X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/program/launchConfigurations/ProgramMainTab.java b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/program/launchConfigurations/ProgramMainTab.java index 6217692..b788580 100644 --- a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/program/launchConfigurations/ProgramMainTab.java +++ b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/internal/program/launchConfigurations/ProgramMainTab.java @@ -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); }