mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
dealing with missing files on classpath
This commit is contained in:
@@ -233,7 +233,8 @@ public class Base {
|
||||
try {
|
||||
Class.forName("com.sun.jdi.VirtualMachine");
|
||||
} catch (ClassNotFoundException cnfe) {
|
||||
String cp = System.getProperty("java.class.path").replace(File.pathSeparatorChar, '\n');
|
||||
//String cp = System.getProperty("java.class.path").replace(File.pathSeparatorChar, '\n');
|
||||
String cp = System.getProperty("boot.class.path").replace(File.pathSeparatorChar, '\n');
|
||||
|
||||
Base.openURL("http://wiki.processing.org/w/Supported_Platforms");
|
||||
Base.showError("Please install JDK 1.6 or later",
|
||||
|
||||
Reference in New Issue
Block a user