checkstyle correction

Former-commit-id: 54539612c3fcdd4ea5952d8689c449d4adcb9386
This commit is contained in:
Jeremy Long
2013-10-08 15:17:52 -04:00
parent 3d0d9a9969
commit b490f15c10

View File

@@ -155,6 +155,8 @@ public class FalsePositiveAnalyzer extends AbstractAnalyzer {
final String nextVersion = nextCpe.getVersion();
if (currentVersion == null && nextVersion == null) {
//how did we get here?
Logger.getLogger(FalsePositiveAnalyzer.class
.getName()).log(Level.FINE, "currentVersion and nextVersion are both null?");
} else if (currentVersion == null && nextVersion != null) {
dependency.getIdentifiers().remove(currentId);
} else if (nextVersion == null && currentVersion != null) {