Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java10
1 files changed, 3 insertions, 7 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java
index f93802fec6..a0522caa6f 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java
@@ -8,10 +8,6 @@
*
* SPDX-License-Identifier: EPL-2.0
*
- * This is an implementation of an early-draft specification developed under the Java
- * Community Process (JCP) and is made available for testing and evaluation purposes
- * only. The code is not compatible with any specification of the JCP.
- *
*
* Contributors:
* IBM Corporation - initial API and implementation
@@ -1004,7 +1000,7 @@ public abstract class ASTNode {
* Node type constant indicating a node of type
* <code>PatternInstanceofExpression</code>.
* @see PatternInstanceofExpression
- * @since 3.25 BETA_JAVA16
+ * @since 3.25
*/
public static final int PATTERN_INSTANCEOF_EXPRESSION = 104;
@@ -2211,7 +2207,7 @@ public abstract class ASTNode {
* </p>
*
* @exception UnsupportedOperationException if this operation is used below JLS16
- * @since 3.24 BETA_JAVA16
+ * @since 3.24
*/
final void unsupportedBelow16() {
if (this.ast.apiLevel < AST.JLS16_INTERNAL) {
@@ -2343,7 +2339,7 @@ public abstract class ASTNode {
* </p>
*
* @exception UnsupportedOperationException if this operation is not used in JLS15
- * @since 3.24 BETA_JAVA16
+ * @since 3.24
*/
final void supportedOnlyIn16() {
if (this.ast.apiLevel != AST.JLS16_INTERNAL) {

Back to the top