Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2016-09-08 15:49:09 +0000
committerJay Arthanareeswaran2016-09-09 06:30:43 +0000
commit392774ce958ca42825bfc9dcbd30f9655a11e87e (patch)
tree3027e283ca5af92bf34e392974a41a4d865f2333 /org.eclipse.jdt.core.tests.performance
parentec81792c237db9fca51c2f512d11262c5ed1bb7e (diff)
downloadeclipse.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.core.tests.performance')
-rw-r--r--org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/SecondaryTypesPerformanceTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/SecondaryTypesPerformanceTest.java b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/SecondaryTypesPerformanceTest.java
index c42b8c8af6..f1a7950c63 100644
--- a/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/SecondaryTypesPerformanceTest.java
+++ b/org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/SecondaryTypesPerformanceTest.java
@@ -81,7 +81,7 @@ public class SecondaryTypesPerformanceTest extends PerformanceTestCase {
classpathList.add(testScratchArea);
for (int i = 0; i<10; ++i) {
- ASTParser parser = ASTParser.newParser(AST.JLS8);
+ ASTParser parser = ASTParser.newParser(AST.JLS9);
parser.setResolveBindings(true);
parser.setStatementsRecovery(true);
parser.setBindingsRecovery(true);

Back to the top