commit | e42ecd93beced9732125ffc6f90ab5f698f18cf0 | [log] [tgz] |
---|---|---|
author | David Brazdil <dbrazdil@google.com> | Fri Jul 27 10:47:32 2018 +0100 |
committer | David Brazdil <dbrazdil@google.com> | Fri Jul 27 10:47:32 2018 +0100 |
tree | 769a06b59d363a7ffeb42a27bbb284c4eb1431bd | |
parent | d61bd66a3c90c7da5949946e6fd18a270d63edc9 [diff] |
Fix typo in class2greylist The name of framework's app usage annotation had a typo in it. Test: N/A, annotation not used anywhere yet Change-Id: I33f2236f693ed316eddd5065064c3e4b1b67c4eb
diff --git a/tools/class2greylist/src/com/android/class2greylist/Class2Greylist.java b/tools/class2greylist/src/com/android/class2greylist/Class2Greylist.java index 008bf70..3e9e320 100644 --- a/tools/class2greylist/src/com/android/class2greylist/Class2Greylist.java +++ b/tools/class2greylist/src/com/android/class2greylist/Class2Greylist.java
@@ -33,7 +33,7 @@ */ public class Class2Greylist { - private static final String ANNOTATION_TYPE = "Landroid/annotation/UnsupportedAppUsage ;"; + private static final String ANNOTATION_TYPE = "Landroid/annotation/UnsupportedAppUsage;"; public static void main(String[] args) { Options options = new Options();