Skip to content

Commit bab6678

Browse files
committed
add a check for null fullClassName
1 parent 7b995a9 commit bab6678

File tree

1 file changed

+4
-0
lines changed
  • test-app/build-tools/android-metadata-generator/src/src/com/telerik/metadata/bcl

1 file changed

+4
-0
lines changed

test-app/build-tools/android-metadata-generator/src/src/com/telerik/metadata/bcl/ClassInfo.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ private void init() {
3939
}
4040
boolean found = false;
4141
String fullClassName = this.getClassName(clazz.getClassNameIndex());
42+
if (fullClassName == null) {
43+
return;
44+
}
45+
4246
for (Attribute a : clazz.getAttributes()) {
4347
if (a instanceof InnerClasses) {
4448
InnerClass[] i = ((InnerClasses) a).getInnerClasses();

0 commit comments

Comments
 (0)