You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2004/11/27 15:37:10 UTC

svn commit: r106714 - /forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java

Author: rgardler
Date: Sat Nov 27 06:37:09 2004
New Revision: 106714

URL: http://svn.apache.org/viewcvs?view=rev&rev=106714
Log:
remove unused variable, don't force a new web browser page
Modified:
   forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java

Modified: forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java
Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java?view=diff&rev=106714&p1=forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java&r1=106713&p2=forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java&r2=106714
==============================================================================
--- forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java	(original)
+++ forrest/trunk/tools/eclipse/src/org/apache/forrest/eclipse/popup/actions/StartForrest.java	Sat Nov 27 06:37:09 2004
@@ -71,7 +71,6 @@
 		}
 		
 		Shell shell = new Shell();
-		String cmdString = null;
 		IPath path = JavaCore.getClasspathVariable("ECLIPSE_HOME");
 		// TODO: This should be a monitor messageDialog
 		messageDialog = new Shell(shell);
@@ -150,7 +149,7 @@
 			URL url;
 			try {
 				url = new URL("http://localhost:8888");
-				WebBrowserEditorInput browserInput = new WebBrowserEditorInput(url, WebBrowserEditorInput.SHOW_ALL | WebBrowserEditorInput.FORCE_NEW_PAGE); 
+				WebBrowserEditorInput browserInput = new WebBrowserEditorInput(url, WebBrowserEditorInput.SHOW_ALL);
 				WebBrowser.openURL(browserInput);
 			} catch (MalformedURLException e1) {
 				// Should never be thrown