Skip to content

Commit 5a22b05

Browse files
committed
Make Inline Comment A Real JavaDoc to be Visible in Intellisense
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent 68d4672 commit 5a22b05

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

hooks/persistence-defectdojo/hook/src/main/java/io/securecodebox/persistence/config/PersistenceProviderConfig.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,14 @@ public final class PersistenceProviderConfig {
2828
private static final int FINDING_UPLOAD_ARG_POSITION = 3;
2929

3030
private final EnvConfig env = new EnvConfig();
31-
// DefectDojo does in contrast to secureCodeBox not pay attention to time zones
32-
// to guarantee consistent results when converting back and forth a time zone
33-
// has to be assumed for DefectDojo. It defaults to the Time Zone of the system clock
31+
/**
32+
* Assumed time zone of DefectDojo
33+
* <p>
34+
* DefectDojo does in contrast to secureCodeBox not pay attention to time zones
35+
* to guarantee consistent results when converting back and forth a time zone
36+
* has to be assumed for DefectDojo. It defaults to the Time Zone of the system clock.
37+
* </p>
38+
*/
3439
@Getter
3540
final ZoneId defectDojoTimezoneId = ZoneId.systemDefault();
3641
@Getter

0 commit comments

Comments
 (0)