Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java
index 019a56bce..989370820 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java
@@ -172,6 +172,8 @@ public interface JavadocTagConstants {
// since 1.8
{},
// since 9
+ {},
+ // since 10
{}
};
public static final char[][][] INLINE_TAGS = {
@@ -194,6 +196,8 @@ public interface JavadocTagConstants {
// since 1.8
{},
// since 9
+ {},
+ // since 10
{}
};
public final static int INLINE_TAGS_LENGTH = INLINE_TAGS.length;

Back to the top