Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2020-04-10 16:10:58 +0000
committerStephan Herrmann2020-04-10 16:10:58 +0000
commitf59da2802d141661a4d4dbe0d1db7483098799fa (patch)
tree3a3db893959be1e248205fe85b1a23b75c7ec3da /org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl
parenta964eeb6a3e516b6a5dd0803153154e59d82c165 (diff)
downloadorg.eclipse.objectteams-f59da2802d141661a4d4dbe0d1db7483098799fa.tar.gz
org.eclipse.objectteams-f59da2802d141661a4d4dbe0d1db7483098799fa.tar.xz
org.eclipse.objectteams-f59da2802d141661a4d4dbe0d1db7483098799fa.zip
update jdt.core to 07329519f5ac8fd8379eab265d25b2c09a24fd96 (before
whitespace change Bug 560451
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
index e21856cca..a78a0f148 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
@@ -322,6 +322,7 @@ public class CompilerOptions {
public static final String VERSION_11 = "11"; //$NON-NLS-1$
public static final String VERSION_12 = "12"; //$NON-NLS-1$
public static final String VERSION_13 = "13"; //$NON-NLS-1$
+ public static final String VERSION_14 = "14"; //$NON-NLS-1$
/*
* Note: Whenever a new version is added, make sure getLatestVersion()
* is updated with it.
@@ -750,7 +751,7 @@ public class CompilerOptions {
* Return the latest Java language version supported by the Eclipse compiler
*/
public static String getLatestVersion() {
- return VERSION_13;
+ return VERSION_14;
}
/**
* Return the most specific option key controlling this irritant. Note that in some case, some irritant is controlled by

Back to the top