Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 41c0dd9

Browse files
committed
Fixing the indentation for enpointVariableName
1 parent 232c038 commit 41c0dd9

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/main/java/org/kohsuke/github/GitHubBuilder.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ public static GitHubBuilder fromEnvironment(String loginVariableName, String pas
9494
if (oauthValue != null)
9595
env.put("oauth", oauthValue);
9696

97-
Object endPoint = System.getenv(endpointVariableName);
98-
if (endPoint != null)
99-
env.put("endpoint", endPoint);
97+
Object endPoint = System.getenv(endpointVariableName);
98+
99+
if (endPoint != null)
100+
env.put("endpoint", endPoint);
100101

101102
return fromProperties(env);
102103

0 commit comments

Comments
 (0)