forked from jasder/antlr
added a comment and removed redundant array creation from varargs.
This commit is contained in:
parent
b742bbdaf4
commit
e0c6210d22
|
@ -4,8 +4,8 @@ import java.util.Arrays;
|
|||
import java.util.List;
|
||||
|
||||
public class TargetConfiguration {
|
||||
|
||||
public static List<TargetConfiguration> ALL = Arrays.asList( new TargetConfiguration[] {
|
||||
/** WARNING: this must be kept in sync with the bild.py directories. */
|
||||
public static List<TargetConfiguration> ALL = Arrays.asList(
|
||||
new TargetConfiguration("tool/test/",
|
||||
"tool/test/org/antlr/v4/test/runtime/java/Java.test.stg"),
|
||||
new TargetConfiguration("../antlr4-csharp/tool/test/",
|
||||
|
@ -24,7 +24,7 @@ public class TargetConfiguration {
|
|||
"../antlr4-javascript/tool/test/org/antlr/v4/test/runtime/javascript/firefox/Firefox.test.stg"),
|
||||
new TargetConfiguration("../antlr4-javascript/tool/test/",
|
||||
"../antlr4-javascript/tool/test/org/antlr/v4/test/runtime/javascript/explorer/Explorer.test.stg")
|
||||
});
|
||||
);
|
||||
|
||||
String outDir;
|
||||
String templates;
|
||||
|
|
Loading…
Reference in New Issue