add annotations for overrides... starting cleanup of shape

This commit is contained in:
benfry
2012-09-01 09:26:38 +00:00
parent 07750c4811
commit b61f3c26b6
27 changed files with 4906 additions and 4137 deletions

View File

@@ -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 {