File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
java/src/processing/mode/java Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ _ mouseButton not set correctly on mouseReleased() with Java2D
66_ https://github.com/processing/processing4/issues/181
77_ https://github.com/processing/processing4/pull/188
88
9+ _ put opengl libs for core into platform-specific subfolders?
910
1011_ setting surface size needs to happen outside draw()
1112_ surface.setSize() sadness etc
Original file line number Diff line number Diff line change @@ -308,6 +308,11 @@ public String preprocess(File srcFolder,
308308 }
309309 }
310310
311+ // Turning this off after 4.0 alpha 5, to see if everything still works.
312+ // Including this classpath is really problematic (many possible conflicts,
313+ // these are classes that won't be available on export, etc etc...)
314+ // Also avoids accidentally hiding other potential classpath bugs.
315+ /*
311316 // Finally, add the regular Java CLASSPATH. This contains everything
312317 // imported by the PDE itself (core.jar, pde.jar, quaqua.jar) which may
313318 // in fact be more of a problem.
@@ -317,6 +322,7 @@ public String preprocess(File srcFolder,
317322 javaClassPath = javaClassPath.substring(1, javaClassPath.length() - 1);
318323 }
319324 classPath += File.pathSeparator + javaClassPath;
325+ */
320326
321327 // But make sure that there isn't anything in there that's missing,
322328 // otherwise ECJ will complain and die. For instance, Java 1.7 (or maybe
Original file line number Diff line number Diff line change 111275 (4.0a6)
2+ X remove java.class.path when launching code from inside the PDE
3+ X should prevent conflicts, avoid papering over other bugs
24
35
46contribs
You can’t perform that action at this time.
0 commit comments