checkstyle correction

Former-commit-id: 7768a0eeb08bc06bff07e94e1a4da34370adda16
This commit is contained in:
Jeremy Long
2013-10-08 15:17:52 -04:00
parent c4869f1917
commit b7d6d027d3

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) {