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