File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/test/java/org/sonar/plugins/checkstyle/internal Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 408408 <headerLocation >I just need to put here smth to let it not use default - LICENSE.txt</headerLocation >
409409 <propertiesLocation >config/checkstyle.properties</propertiesLocation >
410410 <includeTestResources >false</includeTestResources >
411+ <includeTestSourceDirectory >true</includeTestSourceDirectory >
411412 </configuration >
412413 </execution >
413414 <execution >
Original file line number Diff line number Diff line change @@ -397,8 +397,10 @@ else if (AbstractFileSetCheck.class.isAssignableFrom(clss)) {
397397 // remove undocumented properties
398398 new HashSet <>(properties )
399399 .stream ()
400- .filter (property -> UNDOCUMENTED_PROPERTIES
401- .contains (clss .getSimpleName () + "." + property ))
400+ .filter (property -> {
401+ return UNDOCUMENTED_PROPERTIES
402+ .contains (clss .getSimpleName () + "." + property );
403+ })
402404 .forEach (properties ::remove );
403405
404406 if (AbstractCheck .class .isAssignableFrom (clss )) {
You can’t perform that action at this time.
0 commit comments