diff options
author | Andy Clement <aclement@pivotal.io> | 2016-07-26 22:06:30 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2016-07-26 22:06:30 -0700 |
commit | 9977d30072435fe0ae71eb49bfc28787c0310383 (patch) | |
tree | 947ffcff5c809aecae4b00e6a0f3ed03da27b23b /taskdefs/src | |
parent | f282ad80a29cec905333caf13382a8aa9887df2b (diff) | |
download | aspectj-9977d30072435fe0ae71eb49bfc28787c0310383.tar.gz aspectj-9977d30072435fe0ae71eb49bfc28787c0310383.zip |
Further 1.9 changes: better handling of source/targetV1_9_0_BETA5
Diffstat (limited to 'taskdefs/src')
-rw-r--r-- | taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java b/taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java index 0b36599f8..ea53cf11f 100644 --- a/taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java +++ b/taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java @@ -253,9 +253,9 @@ public class AjcTask extends MatchingTask { public static final String COMMAND_EDITOR_NAME = AjcTask.class.getName() + ".COMMAND_EDITOR"; - static final String[] TARGET_INPUTS = new String[] { "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8" }; - static final String[] SOURCE_INPUTS = new String[] { "1.3", "1.4", "1.5", "1.6", "1.7", "1.8" }; - static final String[] COMPLIANCE_INPUTS = new String[] { "-1.3", "-1.4", "-1.5", "-1.6", "-1.7", "-1.8" }; + static final String[] TARGET_INPUTS = new String[] { "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9" }; + static final String[] SOURCE_INPUTS = new String[] { "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9" }; + static final String[] COMPLIANCE_INPUTS = new String[] { "-1.3", "-1.4", "-1.5", "-1.6", "-1.7", "-1.8", "1.9" }; private static final ICommandEditor COMMAND_EDITOR; |