Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2020-10-05 11:33:47 +0000
committerSarika Sinha2020-10-05 11:33:47 +0000
commit15d476e2747783440ceeefbb5e70f0f62a636b77 (patch)
treedb829f3b85eb36c23c5842350cbcf1e3db1a3540
parente59811a5cf43566d5300a91fc0b632e557a64348 (diff)
downloadeclipse.jdt.core-15d476e2747783440ceeefbb5e70f0f62a636b77.tar.gz
eclipse.jdt.core-15d476e2747783440ceeefbb5e70f0f62a636b77.tar.xz
eclipse.jdt.core-15d476e2747783440ceeefbb5e70f0f62a636b77.zip
should be made public API Change-Id: I37a06db0677563dd79c9380852a9f1ee43c0efe4
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java
index 85627cf624..2268d4d23e 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java
@@ -367,8 +367,11 @@ public final class AST {
*/
static final int JLS15_INTERNAL = JLS15;
- /* Used for Java doc only*/
- private static final int JLS_Latest = JLS15;
+ /**
+ * @since 3.24
+ * This provides the latest JLS level.
+ */
+ public static final int JLS_Latest = JLS15;
/*
* Must not collide with a value for ICompilationUnit constants

Back to the top