A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.externaltools / src / net / sourceforge / phpdt / externaltools / internal / program / launchConfigurations / ProgramMainTab.java
index 6217692..b788580 100644 (file)
@@ -17,15 +17,17 @@ public class ProgramMainTab extends ExternalToolsMainTab {
         */
        protected void handleWorkspaceLocationButtonSelected() {
                FileSelectionDialog dialog;
-               dialog = new FileSelectionDialog(getShell(), ResourcesPlugin.getWorkspace().getRoot(), "&Select a program");
+               dialog = new FileSelectionDialog(getShell(), ResourcesPlugin
+                               .getWorkspace().getRoot(), "&Select a program");
                dialog.open();
                IFile file = dialog.getResult();
                if (file == null) {
                        return;
                }
                StringBuffer buf = new StringBuffer();
-               ToolUtil.buildVariableTag(IExternalToolConstants.VAR_WORKSPACE_LOC, file.getFullPath().toString(), buf);
-               String text= buf.toString();
+               ToolUtil.buildVariableTag(IExternalToolConstants.VAR_WORKSPACE_LOC,
+                               file.getFullPath().toString(), buf);
+               String text = buf.toString();
                if (text != null) {
                        locationField.setText(text);
                }