X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/php/launching/PHPEnvironmentTab.java b/net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/php/launching/PHPEnvironmentTab.java index 9133de0..eb99160 100644 --- a/net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/php/launching/PHPEnvironmentTab.java +++ b/net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/php/launching/PHPEnvironmentTab.java @@ -419,8 +419,14 @@ public class PHPEnvironmentTab extends AbstractLaunchConfigurationTab { EnvironmentVariable existingVariable = (EnvironmentVariable) items[i] .getData(); if (existingVariable.getName().equals(name)) { - boolean overWrite = MessageDialog.openQuestion(getShell(),"Overwrite variable?", - MessageFormat.format("A variable named {0} already exists. Overwrite?",new String[] { name })); + boolean overWrite = MessageDialog + .openQuestion( + getShell(), + "Overwrite variable?", + MessageFormat + .format( + "A variable named {0} already exists. Overwrite?", + new String[] { name })); if (!overWrite) { return false; } @@ -756,8 +762,9 @@ public class PHPEnvironmentTab extends AbstractLaunchConfigurationTab { * * @see org.eclipse.debug.ui.ILaunchConfigurationTab#getImage() */ - public Image getImage() { - return XDebugUIPluginImages.get(XDebugUIPluginImages.IMG_EVIEW_ENVIROMENT_TAB); + public Image getImage() { + return XDebugUIPluginImages + .get(XDebugUIPluginImages.IMG_EVIEW_ENVIROMENT_TAB); } /* @@ -826,16 +833,19 @@ public class PHPEnvironmentTab extends AbstractLaunchConfigurationTab { // * @see org.eclipse.jface.window.Window#getInitialSize() // */ // protected Point getInitialSize() { - // Point size = super.getInitialSize(); - // return DialogSettingsHelper.getInitialSize(getDialogSettingsSectionName(), size); - // } - - // /* (non-Javadoc) - // * @see org.eclipse.jface.window.Window#close() - // */ - // public boolean close() { - // DialogSettingsHelper.persistShellGeometry(getShell(), getDialogSettingsSectionName()); - // return super.close(); - // } + // Point size = super.getInitialSize(); + // return + // DialogSettingsHelper.getInitialSize(getDialogSettingsSectionName(), + // size); + // } + + // /* (non-Javadoc) + // * @see org.eclipse.jface.window.Window#close() + // */ + // public boolean close() { + // DialogSettingsHelper.persistShellGeometry(getShell(), + // getDialogSettingsSectionName()); + // return super.close(); + // } } }