diff options
author | Jay Arthanareeswaran | 2018-06-01 03:15:59 -0400 |
---|---|---|
committer | Jay Arthanareeswaran | 2018-06-01 03:15:59 -0400 |
commit | 867c2e5b22ec99c6d56015365d4fef3c3a7038e9 (patch) | |
tree | 0e804b6977f5aff06e85fd784f6fa62be7e7b791 /org.eclipse.jdt.apt.tests | |
parent | 8dad6b49d15382aec312844a6f1a631703b49578 (diff) | |
download | eclipse.jdt.core-867c2e5b22ec99c6d56015365d4fef3c3a7038e9.tar.gz eclipse.jdt.core-867c2e5b22ec99c6d56015365d4fef3c3a7038e9.tar.xz eclipse.jdt.core-867c2e5b22ec99c6d56015365d4fef3c3a7038e9.zip |
Fix warning about deprecated AST10 level.
Change-Id: I23b54277a5acabab580adff76e29f26432a2fd0e
Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
Diffstat (limited to 'org.eclipse.jdt.apt.tests')
-rw-r--r-- | org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/ReadAnnotationTests2.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/ReadAnnotationTests2.java b/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/ReadAnnotationTests2.java index 167e252435..4852b1f796 100644 --- a/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/ReadAnnotationTests2.java +++ b/org.eclipse.jdt.apt.tests/src/org/eclipse/jdt/apt/tests/ReadAnnotationTests2.java @@ -184,7 +184,7 @@ public class ReadAnnotationTests2 extends BuilderTests { } final BindingRequestor requestor = new BindingRequestor(); - final ASTParser parser = ASTParser.newParser(AST.JLS10); + final ASTParser parser = ASTParser.newParser(AST.JLS11); parser.setResolveBindings(true); parser.setProject(javaProj); parser.setIgnoreMethodBodies(true); |