diff options
author | Sarika Sinha | 2020-10-05 11:33:47 +0000 |
---|---|---|
committer | Sarika Sinha | 2020-10-05 11:33:47 +0000 |
commit | 15d476e2747783440ceeefbb5e70f0f62a636b77 (patch) | |
tree | db829f3b85eb36c23c5842350cbcf1e3db1a3540 | |
parent | e59811a5cf43566d5300a91fc0b632e557a64348 (diff) | |
download | eclipse.jdt.core-I20201007-1800.tar.gz eclipse.jdt.core-I20201007-1800.tar.xz eclipse.jdt.core-I20201007-1800.zip |
Bug 567099 - [DOM] JLS_Latest field in org.eclipse.jdt.core.dom.ASTS4_18_0_M1aS4_18_0_M1I20201012-0320I20201010-1800I20201009-1800I20201009-0800I20201009-0430I20201007-1800I20201007-1320I20201007-0600I20201006-1800I20201006-0840I20201006-0600I20201005-1800
should be made public API
Change-Id: I37a06db0677563dd79c9380852a9f1ee43c0efe4
-rw-r--r-- | org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java | 7 |
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 |