Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoj Palat2019-03-21 09:02:32 +0000
committerManoj Palat2019-03-21 09:25:49 +0000
commit22623c099a140bbe9fbe07a7e016331e8ede4a10 (patch)
tree7532e95cca5749e2edee43c626d0e1a5b460bb9e
parent79818d2d80e258f49a2282886a80565870db88cb (diff)
downloadeclipse.jdt.core-22623c099a140bbe9fbe07a7e016331e8ede4a10.tar.gz
eclipse.jdt.core-22623c099a140bbe9fbe07a7e016331e8ede4a10.tar.xz
eclipse.jdt.core-22623c099a140bbe9fbe07a7e016331e8ede4a10.zip
Further omissions update for Bug 545576: [12] Push Java 12 work to
master
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java2
-rw-r--r--org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java6
2 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java
index 3aba2281b9..30ffd73679 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java
@@ -373,7 +373,7 @@ void setSourceStart(int sourceStart);
int Javadoc = 0x80000000;
/** @since 3.14 */
int ModuleRelated = 0x00800000;
- /** @since 3.17 */
+ /** @since 3.18 */
int Compliance = 0x00400000;
/**
diff --git a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java
index f832f2d19e..638d139f8d 100644
--- a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java
+++ b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java
@@ -337,7 +337,7 @@ public class DefaultCodeFormatterConstants {
* </pre>
* @see #createAlignmentValue(boolean, int, int)
* @see #FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION
- * @since 3.17
+ * @since 3.18
*/
public static final String FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION_CHAIN = JavaCore.PLUGIN_ID + ".formatter.alignment_for_conditional_expression_chain"; //$NON-NLS-1$
/**
@@ -2599,7 +2599,7 @@ public class DefaultCodeFormatterConstants {
* </pre>
* @see JavaCore#INSERT
* @see JavaCore#DO_NOT_INSERT
- * @since 3.17
+ * @since 3.18
*/
public static final String FORMATTER_INSERT_SPACE_AFTER_COMMA_IN_SWITCH_CASE_EXPRESSIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_comma_in_switch_case_expressions"; //$NON-NLS-1$
/**
@@ -3658,7 +3658,7 @@ public class DefaultCodeFormatterConstants {
* </pre>
* @see JavaCore#INSERT
* @see JavaCore#DO_NOT_INSERT
- * @since 3.17
+ * @since 3.18
*/
public static final String FORMATTER_INSERT_SPACE_BEFORE_COMMA_IN_SWITCH_CASE_EXPRESSIONS = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_comma_in_switch_case_expressions"; //$NON-NLS-1$
/**

Back to the top