mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 10:55:38 +01:00
add annotations for overrides... starting cleanup of shape
This commit is contained in:
@@ -10,7 +10,7 @@ import processing.app.exec.ProcessResult;
|
||||
|
||||
/**
|
||||
* Utility class for compiling single compilationUnits.
|
||||
*
|
||||
*
|
||||
* @author Jonathan Feinberg <jdf@pobox.com>
|
||||
*
|
||||
*/
|
||||
@@ -56,8 +56,12 @@ class UTCompiler {
|
||||
java.close();
|
||||
}
|
||||
try {
|
||||
return new ProcessHelper("javac", "-sourcepath", tmpdir.getAbsolutePath(), "-cp",
|
||||
classpath, "-nowarn", "-d", tmpdir.getAbsolutePath(), javaFile.getAbsolutePath()).execute();
|
||||
return new ProcessHelper("javac",
|
||||
"-sourcepath", tmpdir.getAbsolutePath(),
|
||||
"-cp", classpath,
|
||||
"-nowarn",
|
||||
"-d", tmpdir.getAbsolutePath(),
|
||||
javaFile.getAbsolutePath()).execute();
|
||||
} catch (InterruptedException e) {
|
||||
throw new RuntimeException(e);
|
||||
} finally {
|
||||
|
||||
Reference in New Issue
Block a user