diff options
author | Andy Clement <aclement@vmware.com> | 2012-03-02 09:19:25 -0800 |
---|---|---|
committer | Andy Clement <aclement@vmware.com> | 2012-03-02 09:19:25 -0800 |
commit | d4a8cc90482cb538a88f74a9aae99a323e547c84 (patch) | |
tree | 3f0d3c0d1881fc9d1cb35482d048c161096bd5bd /tests/src | |
parent | f37c56e02982a1043e7821bf033b58495f8a6b74 (diff) | |
download | aspectj-d4a8cc90482cb538a88f74a9aae99a323e547c84.tar.gz aspectj-d4a8cc90482cb538a88f74a9aae99a323e547c84.zip |
generics
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java index 80d7a8d4d..ae1448c9b 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java @@ -77,7 +77,7 @@ public class AjdeInteractionTestbed extends TestCase { } public void addXmlConfigFile(String projectName, String xmlfile) { - List l = new ArrayList(); + List<String> l = new ArrayList<String>(); l.add(xmlfile); AjCompiler compiler = CompilerFactory.getCompilerForProjectWithDir(sandboxDir + File.separator + projectName); ((MultiProjTestCompilerConfiguration) compiler.getCompilerConfiguration()).setProjectXmlConfigFiles(l); @@ -106,7 +106,7 @@ public class AjdeInteractionTestbed extends TestCase { public void configureAspectPath(String projectName, File aspectpath) { AjCompiler compiler = CompilerFactory.getCompilerForProjectWithDir(sandboxDir + File.separator + projectName); - Set s = new HashSet(); + Set<File> s = new HashSet<File>(); s.add(aspectpath); ((MultiProjTestCompilerConfiguration) compiler.getCompilerConfiguration()).setAspectPath(s); } @@ -121,7 +121,7 @@ public class AjdeInteractionTestbed extends TestCase { ((MultiProjTestCompilerConfiguration) compiler.getCompilerConfiguration()).setJavaOptions(options); } - public static void configureInPath(String projectName, Set inpath) { + public static void configureInPath(String projectName, Set<File> inpath) { AjCompiler compiler = CompilerFactory.getCompilerForProjectWithDir(sandboxDir + File.separator + projectName); ((MultiProjTestCompilerConfiguration) compiler.getCompilerConfiguration()).setInpath(inpath); } |