Skip to content

Commit 9e38a6a

Browse files
committed
Fix constant
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent a8a5a50 commit 9e38a6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
// FIXME: Should be package private bc implementation detail.
3838
public abstract class GenericDefectDojoService<T extends Model> {
3939
private static final String API_PREFIX = "/api/v2/";
40+
private static final long DEFECT_DOJO_OBJET_LIMIT = 100L;
4041
protected Config config;
4142

4243
protected ObjectMapper objectMapper;
@@ -62,7 +63,6 @@ public GenericDefectDojoService(Config config) {
6263
}
6364

6465

65-
protected long DEFECT_DOJO_OBJET_LIMIT = 100L;
6666

6767
/**
6868
* @return The DefectDojo Authentication Header

0 commit comments

Comments
 (0)