Skip to content

Commit eead441

Browse files
committed
Remove bad commit
1 parent 46672c3 commit eead441

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# General library settings
22
group=com.blackducksoftware
3-
version=1.0.99-SNAPSHOT
3+
version=1.0.2-SNAPSHOT
44

55
org.gradle.console=plain
66
org.gradle.warning.mode=all

method-analyzer-core/src/main/java/com/blackduck/method/analyzer/core/MethodUseAnalyzer.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ public Path analyze(Path sourceDirectory, Path outputDirectory, String outputFil
138138
} else {
139139
throw e;
140140
}
141+
} catch (IndexOutOfBoundsException | ClassFormatError | NegativeArraySizeException e) {
142+
//IDETECT-4924 Handle malformed classes properly
143+
brokenFiles.put(classFile, "Malformed class structure: " + Strings.nullToEmpty(e.getMessage()));
141144
}
142145
}
143146

0 commit comments

Comments
 (0)