1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-29 18:52:13 +01:00

Removing check for JDK (as opposed to JRE) in Base.java. This is because on Linux, it's tricky to automatically include tools.jar in the classpath (which is necessary for the Processing code to think that the JDK is present). (For example, Ubuntu doesn't set the JAVA_HOME variable.) As far as I know, Arduino doesn't actually need the JDK, but I could be wrong.

This commit is contained in:
David A. Mellis 2009-08-03 20:53:31 +00:00
parent df1b7f787c
commit 777e7cd30d

View File

@ -157,7 +157,7 @@ public class Base {
// because the platform has to be inited properly first.
// Make sure a full JDK is installed
initRequirements();
//initRequirements();
// run static initialization that grabs all the prefs
Preferences.init(null);