diff options
author | Jay Arthanareeswaran | 2016-09-08 11:49:09 -0400 |
---|---|---|
committer | Jay Arthanareeswaran | 2016-09-09 02:30:43 -0400 |
commit | 392774ce958ca42825bfc9dcbd30f9655a11e87e (patch) | |
tree | 3027e283ca5af92bf34e392974a41a4d865f2333 /org.eclipse.jdt.apt.tests | |
parent | ec81792c237db9fca51c2f512d11262c5ed1bb7e (diff) | |
download | eclipse.jdt.core-392774ce958ca42825bfc9dcbd30f9655a11e87e.tar.gz eclipse.jdt.core-392774ce958ca42825bfc9dcbd30f9655a11e87e.tar.xz eclipse.jdt.core-392774ce958ca42825bfc9dcbd30f9655a11e87e.zip |
Handle the warnings in tests due to deprecation of AST.JLS8.
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 8a6cceaa3d..ba36acf4b3 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.JLS8); + final ASTParser parser = ASTParser.newParser(AST.JLS9); parser.setResolveBindings(true); parser.setProject(javaProj); parser.setIgnoreMethodBodies(true); |