From 777e7cd30d14a508b02cc3ab98ce034020dad743 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Mon, 3 Aug 2009 20:53:31 +0000 Subject: [PATCH] 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. --- app/src/processing/app/Base.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index fb09d2870..94f6a3239 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -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);