Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2019-01-28 04:30:30 +0000
committerVikas Chandra2019-01-28 04:30:30 +0000
commit1a2aff4705f65296e52367ac0b828aac10ae6130 (patch)
tree988f2c41d6d9e0a87d1ae9788c42a2beeac04c91 /org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal
parentd19276eae98e935f2934a2eb81f277c9da487629 (diff)
downloadeclipse.jdt.core-1a2aff4705f65296e52367ac0b828aac10ae6130.tar.gz
eclipse.jdt.core-1a2aff4705f65296e52367ac0b828aac10ae6130.tar.xz
eclipse.jdt.core-1a2aff4705f65296e52367ac0b828aac10ae6130.zip
Bug 542564 - [12] [tests][regression] completion tests failing
Change-Id: Ic5cb0cc61e2b49cfa596156ab79aedf5b25d6841 Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java6
1 files changed, 5 insertions, 1 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 64077fde76..6ef2f8173a 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2018 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -157,6 +157,8 @@ public interface JavadocTagConstants {
// since 10
{},
// since 11
+ {},
+ //since 12
{}
};
public static final char[][][] INLINE_TAGS = {
@@ -183,6 +185,8 @@ public interface JavadocTagConstants {
// since 10
{},
// since 11
+ {},
+ //since 12
{}
};
public final static int INLINE_TAGS_LENGTH = INLINE_TAGS.length;

Back to the top