]> source.dussan.org Git - aspectj.git/commitdiff
fix for 224962 - cope with 1.6
authoraclement <aclement>
Tue, 1 Apr 2008 04:48:31 +0000 (04:48 +0000)
committeraclement <aclement>
Tue, 1 Apr 2008 04:48:31 +0000 (04:48 +0000)
taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java

index 78b820211e13c95b3c8c92dd55a5f1669051f215..7419b562b81a6f4ef6d20869df3af67f9e1a067a 100644 (file)
@@ -279,11 +279,11 @@ public class AjcTask extends MatchingTask {
         = AjcTask.class.getName() + ".COMMAND_EDITOR";
 
     static final String[] TARGET_INPUTS = new String [] 
-    { "1.1", "1.2", "1.3", "1.4", "1.5" };
+    { "1.1", "1.2", "1.3", "1.4", "1.5", "1.6" };
     static final String[] SOURCE_INPUTS = new String [] 
-    { "1.3", "1.4", "1.5" };
+    { "1.3", "1.4", "1.5", "1.6" };
     static final String[] COMPLIANCE_INPUTS = new String [] 
-    { "-1.3", "-1.4", "-1.5" };
+    { "-1.3", "-1.4", "-1.5", "-1.6" };
 
     private static final ICommandEditor COMMAND_EDITOR;