6481N/Ahttps://bugs.eclipse.org/bugs/show_bug.cgi?id=479134
6481N/A
6481N/A--- org/eclipse/jdt/internal/compiler/batch/ClasspathDirectory.java
6481N/A+++ org/eclipse/jdt/internal/compiler/batch/ClasspathDirectory.java
6481N/A@@ -18,7 +18,6 @@
6481N/A import java.util.Hashtable;
6481N/A import java.util.List;
6481N/A
6481N/A-import org.eclipse.jdt.core.JavaCore;
6481N/A import org.eclipse.jdt.core.compiler.CharOperation;
6481N/A import org.eclipse.jdt.internal.compiler.CompilationResult;
6481N/A import org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies;
6481N/A@@ -189,7 +188,7 @@
6481N/A ProblemReporter problemReporter =
6481N/A new ProblemReporter(
6481N/A DefaultErrorHandlingPolicies.proceedWithAllProblems(),
6481N/A- new CompilerOptions(JavaCore.getOptions()),
6481N/A+ new CompilerOptions(),
6481N/A new DefaultProblemFactory());
6481N/A Parser parser = new Parser(problemReporter, false);
6481N/A
6481N/A--- build.xml
6481N/A+++ build.xml
6481N/A@@ -22,8 +22,8 @@
6481N/A
6481N/A <javac srcdir="${basedir}" destdir="${output}"
6481N/A debuglevel="lines,source"
6481N/A- source="1.6"
6481N/A- target="1.6">
6481N/A+ source="1.8"
6481N/A+ target="1.8">
6481N/A <compilerarg line="-Xlint:none"/>
6481N/A </javac>
6481N/A