Browse Source

376990: iajc does not support source compliance level 1.7

tags/V1_7_0RC1
Andy Clement 12 years ago
parent
commit
89c178fba2
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java

+ 3
- 3
taskdefs/src/org/aspectj/tools/ant/taskdefs/AjcTask.java View File

@@ -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" };
static final String[] SOURCE_INPUTS = new String[] { "1.3", "1.4", "1.5", "1.6" };
static final String[] COMPLIANCE_INPUTS = new String[] { "-1.3", "-1.4", "-1.5", "-1.6" };
static final String[] TARGET_INPUTS = new String[] { "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7" };
static final String[] SOURCE_INPUTS = new String[] { "1.3", "1.4", "1.5", "1.6", "1.7" };
static final String[] COMPLIANCE_INPUTS = new String[] { "-1.3", "-1.4", "-1.5", "-1.6", "-1.7" };

private static final ICommandEditor COMMAND_EDITOR;


Loading…
Cancel
Save