this was just doubling this stuff up, oops

This commit is contained in:
Ben Fry
2016-08-19 17:11:11 -04:00
parent eba6ed14e6
commit f8e0491517

View File

@@ -1110,8 +1110,10 @@ public class JavaBuild {
String runOptionsStr = runOptions.join(" ");
pw.print("java " + runOptionsStr +
" -Djava.library.path=\"$APPDIR:$APPDIR/lib\"" +
" -Djava.ext.dirs=\"$APPDIR/java/lib/ext\"" +
" -Djna.nosys=true" +
// these aren't included here since they're added elsewhere
// (and only included when Java is embedded)
//" -Djava.ext.dirs=\"$APPDIR/java/lib/ext\"" +
//" -Djna.nosys=true" +
" -cp \"" + exportClassPath + "\"" +
" " + sketch.getName() + " \"$@\"\n");