whitespace fixes

This commit is contained in:
Ben Fry
2021-06-19 09:13:16 -04:00
parent 6ad8d708a8
commit 02b98d1b2e

View File

@@ -23,18 +23,18 @@
<cp>lib/ant.jar</cp>
<cp>lib/ant-launcher.jar</cp>
<cp>core/library/javafx.base.jar</cp>
<cp>core/library/javafx.controls.jar</cp>
<cp>core/library/javafx.fxml.jar</cp>
<cp>core/library/javafx.graphics.jar</cp>
<cp>core/library/javafx.media.jar</cp>
<cp>core/library/javafx.swing.jar</cp>
<cp>core/library/javafx.base.jar</cp>
<cp>core/library/javafx.controls.jar</cp>
<cp>core/library/javafx.fxml.jar</cp>
<cp>core/library/javafx.graphics.jar</cp>
<cp>core/library/javafx.media.jar</cp>
<cp>core/library/javafx.swing.jar</cp>
<!-- <cp>%EXEDIR%/java/lib/tools.jar</cp> -->
</classPath>
<jre>
<path>java</path>
<!-- Make it possible access JavaFX and JOGL libraries for Tools,
Modes, etc. Not recommended, but making it possible because
Modes, etc. Not recommended, but making it possible because
some Tools rely on JavaFX. (OpenGL is only incidental.) -->
<opt>-Djava.library.path=lib;core/library</opt>
<opt>--module-path=core/library</opt>
@@ -50,12 +50,12 @@
<!-- https://github.com/processing/processing/issues/2239 -->
<opt>-Djna.nosys=true</opt>
<!-- Because nosys is set to true, the DLL in the current working
directory won't be considered. And we can't specify the user's
directory here because that'll get us into encoding trouble.
(See https://github.com/processing/processing/issues/3624)
Instead, set this so that Native.loadNativeLibrary() will use
new File(path, "jnidispatch.dll") which will be relative to the
directory of processing.exe (the current working directory). -->
directory won't be considered. And we can't specify the user's
directory here because that'll get us into encoding trouble.
(See https://github.com/processing/processing/issues/3624)
Instead, set this so that Native.loadNativeLibrary() will use
new File(path, "jnidispatch.dll") which will be relative to the
directory of processing.exe (the current working directory). -->
<opt>-Djna.boot.library.path=lib</opt>
<opt>-Djna.nounpack=true</opt>