Skip to content

Commit 56bb904

Browse files
committed
Move Property to top of Class to the Others
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent 4a219c2 commit 56bb904

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ public class PersistenceProviderConfig {
3232
// has to be assumed for DefectDojo. It defaults to the Time Zone of the system clock
3333
@Getter
3434
ZoneId defectDojoTimezoneId = ZoneId.systemDefault();
35+
@Getter
36+
final boolean readOnly;
3537

3638
// Download Urls
3739
@Getter
@@ -57,9 +59,6 @@ public String getFindingUploadUrl() {
5759
return findingUploadUrl;
5860
}
5961

60-
@Getter
61-
final boolean readOnly;
62-
6362
public boolean isReadAndWrite() {
6463
return !readOnly;
6564
}

0 commit comments

Comments
 (0)