File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
BEXCodeRefactoringExamples
src/main/java/info/codesaway/becr/comparedirectories Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 2424 <artifactId >becr</artifactId >
2525 <version >0.12.0</version >
2626 </dependency >
27+ <dependency >
28+ <groupId >com.github.spotbugs</groupId >
29+ <artifactId >spotbugs-annotations</artifactId >
30+ <version >4.0.3</version >
31+ <optional >true</optional >
32+ </dependency >
2733 <!-- Used for making Excel report -->
2834 <dependency >
2935 <groupId >org.apache.poi</groupId >
Original file line number Diff line number Diff line change 7171import com .google .common .collect .RangeMap ;
7272import com .google .common .collect .TreeRangeMap ;
7373
74+ import edu .umd .cs .findbugs .annotations .SuppressFBWarnings ;
7475import info .codesaway .becr .diff .CorrespondingCode ;
7576import info .codesaway .becr .diff .FileType ;
7677import info .codesaway .becr .diff .ImpactType ;
@@ -847,6 +848,7 @@ public String getHeaderName() {
847848
848849 private XSSFCellStyle WRAP_TEXT_CELL_STYLE ;
849850
851+ @ SuppressFBWarnings (value = "RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" , justification = "https://github.com/spotbugs/spotbugs/issues/756" )
850852 public XSSFWorkbook generateExcelReport (final Path excelReportPath ,
851853 final Map <String , String > projectSheetNameMap ,
852854 final CompareDirectoriesResult compareDirectoriesResult ) throws IOException {
You can’t perform that action at this time.
0 commit comments