Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-28790] NIT: tabulation issue
(cherry picked from commit 5423f69)
  • Loading branch information
escoem authored and olivergondza committed Mar 30, 2016
1 parent f6db667 commit 717c5f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/util/ArgumentListBuilder.java
Expand Up @@ -317,8 +317,8 @@ public ArgumentListBuilder toWindowsCommand(boolean escapeVars) {
ArgumentListBuilder windowsCommand = new ArgumentListBuilder().add("cmd.exe", "/C");
boolean quoted, percent;
for (int i = 0; i < args.size(); i++) {
StringBuilder quotedArgs = new StringBuilder();
String arg = args.get(i);
StringBuilder quotedArgs = new StringBuilder();
String arg = args.get(i);
quoted = percent = false;
for (int j = 0; j < arg.length(); j++) {
char c = arg.charAt(j);
Expand Down

0 comments on commit 717c5f5

Please sign in to comment.