Cross Reference: ECJ.ecj-patch
xref
: /
solaris-userland
/
components
/
tomcat-8
/
patches
/
ECJ.ecj-patch
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
6265
N/A
https://bugs.eclipse.org/bugs/show_bug.cgi?id=479134
6265
N/A
6265
N/A
---
org/eclipse/jdt/internal/compiler/batch/ClasspathDirectory.java
6265
N/A
+++
org/eclipse/jdt/internal/compiler/batch/ClasspathDirectory.java
6265
N/A
@@ -18,7 +18,6 @@
6265
N/A
import
java.util.Hashtable
;
6265
N/A
import
java.util.List
;
6265
N/A
6265
N/A
-import
org.eclipse.jdt.core.JavaCore
;
6265
N/A
import
org.eclipse.jdt.core.compiler.CharOperation
;
6265
N/A
import
org.eclipse.jdt.internal.compiler.CompilationResult
;
6265
N/A
import
org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies
;
6265
N/A
@@ -189,7 +188,7 @@
6265
N/A
ProblemReporter problemReporter =
6265
N/A
new ProblemReporter(
6265
N/A
DefaultErrorHandlingPolicies.proceedWithAllProblems
(),
6265
N/A
- new CompilerOptions(
JavaCore.getOptions
()),
6265
N/A
+ new CompilerOptions(),
6265
N/A
new DefaultProblemFactory());
6265
N/A
Parser parser = new Parser(problemReporter, false);
6265
N/A
6265
N/A
---
build.xml
6265
N/A
+++
build.xml
6265
N/A
@@ -22,8 +22,8 @@
6265
N/A
6265
N/A
<javac srcdir="${basedir}" destdir="${output}"
6265
N/A
debuglevel="lines,source"
6265
N/A
- source="1.6"
6265
N/A
- target="1.6">
6265
N/A
+ source="1.8"
6265
N/A
+ target="1.8">
6265
N/A
<compilerarg line="-Xlint:none"/>
6265
N/A
</javac>
6265
N/A