浏览代码

generics

tags/V1_7_0RC1
aclement 12 年前
父节点
当前提交
b5e615c672
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/ConfigParser.java

+ 2
- 2
org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/ConfigParser.java 查看文件

@@ -40,7 +40,7 @@ public class ConfigParser {

public void parseCommandLine(String[] argsArray) throws ParseException {
location = new CommandLineLocation();
LinkedList args = new LinkedList();
LinkedList<Arg> args = new LinkedList<Arg>();
for (int i = 0; i < argsArray.length; i++) {
args.add(new Arg(argsArray[i], location));
}
@@ -64,7 +64,7 @@ public class ConfigParser {
return;
}

LinkedList args = new LinkedList();
LinkedList<Arg> args = new LinkedList<Arg>();
int lineNum = 0;

try {

正在加载...
取消
保存