Skip to content

Commit 1d0bfbd

Browse files
committed
Removed debug code (#155).
1 parent eeb9f62 commit 1d0bfbd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/gitlab4j/api/utils/Oauth2LoginStreamingOutput.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ public void write(OutputStream output) throws IOException, WebApplicationExcepti
3939
// Output the quoted password
4040
writer.append('"');
4141
for (int i = 0, length = password.length(); i < length; i++) {
42-
char c = password.charAt(i);
43-
writer.append(c);
42+
writer.append(password.charAt(i));
4443
}
4544
writer.append('"');
4645

0 commit comments

Comments
 (0)