Fix several warnings

This commit is contained in:
Pierre DAL-PRA 2015-07-17 08:30:13 +02:00
parent 0ff2e8fac7
commit f484dc4125
1 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import java.io.File;
import xsbti.Logger; import xsbti.Logger;
import xsbti.Reporter; import xsbti.Reporter;
/** /**
* Interface to a Java compiler. * Interface to a Java compiler.
*/ */
public interface JavaCompiler public interface JavaCompiler
@ -14,6 +14,7 @@ public interface JavaCompiler
* *
* @deprecated 0.13.8 - Use compileWithReporter instead * @deprecated 0.13.8 - Use compileWithReporter instead
*/ */
@Deprecated
void compile(File[] sources, File[] classpath, Output output, String[] options, Logger log); void compile(File[] sources, File[] classpath, Output output, String[] options, Logger log);
/** /**
@ -23,4 +24,4 @@ public interface JavaCompiler
* Failures should be passed to the provided Reporter. * Failures should be passed to the provided Reporter.
*/ */
void compileWithReporter(File[] sources, File[] classpath, Output output, String[] options, Reporter reporter, Logger log); void compileWithReporter(File[] sources, File[] classpath, Output output, String[] options, Reporter reporter, Logger log);
} }