Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2018-02-14 16:10:03 +0000
committerJay Arthanareeswaran2018-02-14 16:34:37 +0000
commitd09788c534bc944024a06e74e947a86c2ee3a590 (patch)
tree780b2fe51fcd34dd7529483209d0c2c3bccd2865 /org.eclipse.jdt.core.tests.performance
parente1177a98543686170f61d93ca4b51de414539862 (diff)
downloadeclipse.jdt.core-d09788c534bc944024a06e74e947a86c2ee3a590.tar.gz
eclipse.jdt.core-d09788c534bc944024a06e74e947a86c2ee3a590.tar.xz
eclipse.jdt.core-d09788c534bc944024a06e74e947a86c2ee3a590.zip
Bug 531099 - [10] Invalid @since 3.15 tag on JavaCore.VERSION_10
Fixes few other deprecation warnings Change-Id: Ifb26b07e1298f4a6815180a8a1f3fa0651c5416f Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
Diffstat (limited to 'org.eclipse.jdt.core.tests.performance')
-rw-r--r--org.eclipse.jdt.core.tests.performance/META-INF/MANIFEST.MF1
-rw-r--r--org.eclipse.jdt.core.tests.performance/src/org/eclipse/jdt/core/tests/performance/SecondaryTypesPerformanceTest.java2
2 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core.tests.performance/META-INF/MANIFEST.MF b/org.eclipse.jdt.core.tests.performance/META-INF/MANIFEST.MF
index 11340b2f3f..afc7dc33af 100644
--- a/org.eclipse.jdt.core.tests.performance/META-INF/MANIFEST.MF
+++ b/org.eclipse.jdt.core.tests.performance/META-INF/MANIFEST.MF
@@ -19,3 +19,4 @@ Require-Bundle: org.eclipse.core.resources;bundle-version="[3.2.0,4.0.0)",
org.eclipse.jdt.core.tests.binaries;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Eclipse-BundleShape: dir
+Automatic-Module-Name: org.eclipse.jdt.core.tests.performance
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 f1a7950c63..095863df6d 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.JLS9);
+ ASTParser parser = ASTParser.newParser(AST.JLS10);
parser.setResolveBindings(true);
parser.setStatementsRecovery(true);
parser.setBindingsRecovery(true);

Back to the top