### Eclipse Workspace Patch 1.0
#P sophie
Index: dev-tools/author.TrueAuthorMain.launch
===================================================================
--- dev-tools/author.TrueAuthorMain.launch	(revision 8514)
+++ dev-tools/author.TrueAuthorMain.launch	(working copy)
@@ -14,6 +14,6 @@
 <stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="author.bundles.config author"/>
 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="org.sophie2.launcher"/>
 <stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.maven.ide.eclipse.launchconfig.sourcepathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-ea -Dsophie2.development=true -Dapple.laf.useScreenMenuBar=true"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-ea -Dsophie2.development=true -Dapple.laf.useScreenMenuBar=true -Xmx512m"/>
 <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:org.sophie2.launcher}"/>
 </launchConfiguration>
Index: modules/org.sophie2.base.commons/src/main/java/org/sophie2/base/commons/util/OSUtil.java
===================================================================
--- modules/org.sophie2.base.commons/src/main/java/org/sophie2/base/commons/util/OSUtil.java	(revision 8514)
+++ modules/org.sophie2.base.commons/src/main/java/org/sophie2/base/commons/util/OSUtil.java	(working copy)
@@ -2,7 +2,6 @@
 
 import java.awt.Toolkit;
 import java.awt.event.InputEvent;
-import java.lang.reflect.Method;
 import java.util.Arrays;
 
 /**
@@ -126,10 +125,7 @@
 
 		try {
 			if (isMacOS()) {
-				Class<?> fileMgr = Class.forName("com.apple.eio.FileManager");
-				Method openURL = fileMgr.getDeclaredMethod("openURL",
-						new Class[] { String.class });
-				openURL.invoke(null, new Object[] { url });
+				Runtime.getRuntime().exec(new String[] { "open", url });
 
 			} else if (isWindows()) {
 				Runtime.getRuntime().exec(

