Blame SOURCES/tomcat-7.0.54-rebase.patch

9a9096
--- java/org/apache/jasper/compiler/JDTCompiler.java.orig	2014-09-17 12:18:00.909020000 -0400
9a9096
+++ java/org/apache/jasper/compiler/JDTCompiler.java	2014-09-17 12:21:41.007769000 -0400
9a9096
@@ -333,9 +333,11 @@
9a9096
             } else if(opt.equals("1.7")) {
9a9096
                 settings.put(CompilerOptions.OPTION_Source,
9a9096
                              CompilerOptions.VERSION_1_7);
9a9096
+            /**
9a9096
             } else if(opt.equals("1.8")) {
9a9096
                 settings.put(CompilerOptions.OPTION_Source,
9a9096
                              CompilerOptions.VERSION_1_8);
9a9096
+            **/
9a9096
             } else {
9a9096
                 log.warn("Unknown source VM " + opt + " ignored.");
9a9096
                 settings.put(CompilerOptions.OPTION_Source,
9a9096
@@ -377,11 +379,13 @@
9a9096
                              CompilerOptions.VERSION_1_7);
9a9096
                 settings.put(CompilerOptions.OPTION_Compliance,
9a9096
                         CompilerOptions.VERSION_1_7);
9a9096
+            /**
9a9096
             } else if(opt.equals("1.8")) {
9a9096
                 settings.put(CompilerOptions.OPTION_TargetPlatform,
9a9096
                              CompilerOptions.VERSION_1_8);
9a9096
                 settings.put(CompilerOptions.OPTION_Compliance,
9a9096
                         CompilerOptions.VERSION_1_8);
9a9096
+            **/
9a9096
             } else {
9a9096
                 log.warn("Unknown target VM " + opt + " ignored.");
9a9096
                 settings.put(CompilerOptions.OPTION_TargetPlatform,