@@ -132,7 +132,7 @@ public String getFilename() {
132132
133133 public ImportScanResponse importScan (ScanFile scanFile , long engagementId , long lead , String currentDate , ScanType scanType , long testType ) {
134134 final var options = new LinkedMultiValueMap <String , Object >();
135- options .add ("engagement" , Long .toString (engagementId )); // FIXME Seems to be duplicated.
135+ options .add ("engagement" , Long .toString (engagementId )); // FIXME Seems to be duplicated bc it is done again in the overloaded method .
136136
137137 return this .importScan (scanFile , engagementId , lead , currentDate , scanType , testType , options );
138138 }
@@ -145,7 +145,7 @@ public ImportScanResponse importScan(ScanFile scanFile, long engagementId, long
145145
146146 public ImportScanResponse reimportScan (ScanFile scanFile , long testId , long lead , String currentDate , ScanType scanType , long testType ) {
147147 final var options = new LinkedMultiValueMap <String , Object >();
148- options .add ("test" , Long .toString (testId )); // FIXME Seems to be duplicated.
148+ options .add ("test" , Long .toString (testId )); // FIXME Seems to be duplicated bc it is done again in the overloaded method .
149149
150150 return this .reimportScan (scanFile , testId , lead , currentDate , scanType , testType , options );
151151 }
0 commit comments