We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3deefd commit 649444fCopy full SHA for 649444f
1 file changed
src/main/java/org/apache/maven/shared/utils/cli/shell/Shell.java
@@ -23,8 +23,6 @@
23
import java.util.Arrays;
24
import java.util.List;
25
26
-import org.apache.maven.shared.utils.StringUtils;
27
-
28
/**
29
* Class that abstracts the Shell functionality,
30
* with subclasses for shells that behave particularly, like
@@ -96,14 +94,7 @@ String[] getShellArgs() {
96
94
}
97
95
98
protected String quoteOneItem(String inputString, boolean isExecutable) {
99
- char[] escapeChars = {};
100
- return StringUtils.quoteAndEscape(
101
- inputString,
102
- isExecutable ? '\"' : '\"',
103
- escapeChars,
104
- getQuotingTriggerChars(),
105
- '\\',
106
- unconditionalQuoting);
+ return inputString;
107
108
109
0 commit comments