25 lines
1.3 KiB
Diff
25 lines
1.3 KiB
Diff
|
--- java/org/apache/jasper/compiler/JDTCompiler.java~ 2016-07-01 14:39:19.728255958 -0400
|
||
|
+++ java/org/apache/jasper/compiler/JDTCompiler.java 2016-07-01 14:39:37.191311760 -0400
|
||
|
@@ -312,9 +312,6 @@
|
||
|
} else if(opt.equals("1.8")) {
|
||
|
settings.put(CompilerOptions.OPTION_Source,
|
||
|
CompilerOptions.VERSION_1_8);
|
||
|
- } else if(opt.equals("1.9")) {
|
||
|
- settings.put(CompilerOptions.OPTION_Source,
|
||
|
- CompilerOptions.VERSION_1_9);
|
||
|
} else {
|
||
|
log.warn("Unknown source VM " + opt + " ignored.");
|
||
|
settings.put(CompilerOptions.OPTION_Source,
|
||
|
@@ -361,11 +358,6 @@
|
||
|
CompilerOptions.VERSION_1_8);
|
||
|
settings.put(CompilerOptions.OPTION_Compliance,
|
||
|
CompilerOptions.VERSION_1_8);
|
||
|
- } else if(opt.equals("1.9")) {
|
||
|
- settings.put(CompilerOptions.OPTION_TargetPlatform,
|
||
|
- CompilerOptions.VERSION_1_9);
|
||
|
- settings.put(CompilerOptions.OPTION_Compliance,
|
||
|
- CompilerOptions.VERSION_1_9);
|
||
|
} else {
|
||
|
log.warn("Unknown target VM " + opt + " ignored.");
|
||
|
settings.put(CompilerOptions.OPTION_TargetPlatform,
|