Skip to content

Commit 8bfcf29

Browse files
committed
no findbugs for GUI, JVM crashes!
1 parent f67c6e6 commit 8bfcf29

File tree

1 file changed

+7
-6
lines changed
  • code-assert-gui/src/test/java/guru/nidi/codeassert/gui

1 file changed

+7
-6
lines changed

code-assert-gui/src/test/java/guru/nidi/codeassert/gui/CodeTest.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,13 @@ public void defineRules() {
5454

5555
@Override
5656
protected FindBugsResult analyzeFindBugs() {
57-
final BugCollector bugCollector = new BugCollector()
58-
.apply(PredefConfig.minimalFindBugsIgnore())
59-
//TODO fix
60-
.just(In.clazz(AppController.class).ignore("PATH_TRAVERSAL_IN"))
61-
.just(In.everywhere().ignore("SE_NO_SERIALVERSIONID", "SPRING_ENDPOINT"));
62-
return new FindBugsAnalyzer(AnalyzerConfig.maven().main(), bugCollector).analyze();
57+
return null; //TODO JVM crashes, WTF!?
58+
// final BugCollector bugCollector = new BugCollector()
59+
// .apply(PredefConfig.minimalFindBugsIgnore())
60+
// TODO fix
61+
// .just(In.clazz(AppController.class).ignore("PATH_TRAVERSAL_IN"))
62+
// .just(In.everywhere().ignore("SE_NO_SERIALVERSIONID", "SPRING_ENDPOINT"));
63+
// return new FindBugsAnalyzer(AnalyzerConfig.maven().main(), bugCollector).analyze();
6364
}
6465

6566
@Override

0 commit comments

Comments
 (0)