Skip to content

Commit 37db0f9

Browse files
committed
#36 Reformatting
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent cf6fee1 commit 37db0f9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/main/java/io/securecodebox/persistence/defectdojo/config/DefectDojoConfig.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,14 @@ public class DefectDojoConfig {
3434
private final Long userId;
3535

3636
public DefectDojoConfig(String url, String apiKey, String username, int maxPageCountForGets) {
37-
this(url,apiKey,username, maxPageCountForGets, null);
37+
this(url, apiKey, username, maxPageCountForGets, null);
3838
}
3939

40-
public static DefectDojoConfig fromEnv(){
40+
public static DefectDojoConfig fromEnv() {
4141
String url = System.getenv("DEFECTDOJO_URL");
4242
String username = System.getenv("DEFECTDOJO_USERNAME");
4343
String apiKey = System.getenv("DEFECTDOJO_APIKEY");
44-
Long userId = Optional.ofNullable(System.getenv("DEFECTDOJO_USER_ID"))
45-
.map(Long::parseLong)
46-
.orElse(null);
44+
Long userId = Optional.ofNullable(System.getenv("DEFECTDOJO_USER_ID")).map(Long::parseLong).orElse(null);
4745

4846
int maxPageCountForGets = 100;
4947
if (System.getenv("DEFECTDOJO_MAX_PAGE_COUNT_FOR_GETS") != null) {

0 commit comments

Comments
 (0)