You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/functional/cmdline_options_tester/src/TestConfigParser.java
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -19,11 +19,15 @@
19
19
*
20
20
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 OR GPL-2.0-only WITH OpenJDK-assembly-exception-1.0
21
21
*/
22
-
23
-
importjava.util.*;
22
+
importjava.util.ArrayList;
23
+
importjava.util.Hashtable;
24
+
importjava.util.List;
25
+
importjava.util.StringTokenizer;
24
26
importjava.util.regex.Pattern;
25
27
26
-
importcom.oti.j9.exclude.*;
28
+
importcom.oti.j9.exclude.ExcludeList;
29
+
importcom.oti.j9.exclude.IXMLDocumentHandler;
30
+
importcom.oti.j9.exclude.XMLParser;
27
31
28
32
classTestConfigParser {
29
33
privateExcludeList_excludes;
@@ -119,9 +123,9 @@ class TestConfigDocumentHandler implements IXMLDocumentHandler {
119
123
// this flag allows us to continue to use this parser implementation for the more complicated use of the command element without having to re-write it as a sort of delegating PDA
120
124
privateboolean_isInNewCommandStanza;
121
125
// used to collect the contents of the in-order "arg" tags under the new-style command stanza (which are then passed as arguments to the underlying process)
122
-
privateVector<String> _commandArgs;
126
+
privateList<String> _commandArgs;
123
127
// used to collect the contents of the in-order "input" tags under the new-style command stanza (which are then fed into the stdin of the underlying process as new-line terminated strings)
0 commit comments