We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a98f310 commit 800f64fCopy full SHA for 800f64f
1 file changed
plugin/src/main/java/jenkins/plugins/openstack/compute/internal/TokenGroup.java
@@ -29,7 +29,6 @@
29
30
import javax.annotation.Nonnull;
31
import java.util.ArrayList;
32
-import java.util.Collections;
33
import java.util.List;
34
35
/**
@@ -117,7 +116,7 @@ private static String clean(String in) {
117
116
inQuotes = !inQuotes;
118
} else if (delimiters.contains(c) && !inQuotes) {
119
fields.add(token.toString());
120
- fields.add(new String(new char[] { (char) c }));
+ fields.add(String.valueOf((char) c));
121
token.setLength(0);
122
} else {
123
token.append((char) c);
0 commit comments