Skip to content

Commit 5f06327

Browse files
committed
#36 Explixit call to super for dedicated constructor
This is to avoid uninitialized state of parent properties, if some type hierarchy is added afterwards. Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent c28114f commit 5f06327

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/io/securecodebox/persistence/defectdojo/service/ImportScanService.java

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public class ImportScanService {
4242
protected String defectDojoApiKey;
4343

4444
public ImportScanService(DefectDojoConfig config) {
45+
super();
4546
this.defectDojoUrl = config.getUrl();
4647
this.defectDojoApiKey = config.getApiKey();
4748
}

0 commit comments

Comments
 (0)