Blame SOURCES/tomcat-8.0.36-CompilerOptionsV9.patch

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