Author: koen.aers(a)jboss.com
Date: 2011-06-28 12:02:27 -0400 (Tue, 28 Jun 2011)
New Revision: 32414
Removed:
trunk/forge/plugins/org.jboss.tools.forge.ui/lib/
Modified:
trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/launching/ForgeRuntime.java
Log:
remove the forge jar files from the org.jboss.tools.forge.ui plugin; the embedded runtime
is now located in the org.jboss.tools.forge.runtime plugin.
Modified:
trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/launching/ForgeRuntime.java
===================================================================
---
trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/launching/ForgeRuntime.java 2011-06-28
16:00:58 UTC (rev 32413)
+++
trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/launching/ForgeRuntime.java 2011-06-28
16:02:27 UTC (rev 32414)
@@ -31,6 +31,7 @@
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
+import org.eclipse.core.runtime.Platform;
import org.eclipse.debug.core.DebugEvent;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.DebugPlugin;
@@ -161,7 +162,7 @@
private static void createInitialInstallations() {
try {
- File file = FileLocator.getBundleFile(ForgeUIPlugin.getDefault().getBundle());
+ File file =
FileLocator.getBundleFile(Platform.getBundle("org.jboss.tools.forge.runtime"));
defaultInstallation = new ForgeInstallation("embedded",
file.getAbsolutePath());
installations = new ArrayList<ForgeInstallation>();
installations.add(defaultInstallation);
Show replies by date