Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizard.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizard.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizard.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizard.java
index 7d8bc653b..60681dbe0 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizard.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/importexport/launchconfigurations/ImportLaunchConfigurationsWizard.java
@@ -20,16 +20,16 @@ import org.eclipse.ui.IWorkbench;
/**
* This class provides a wizard for importing launch configurations from the local
* file system into the current workspace.
- *
- * It allows the suer to specify if the configuration should be shared or local
+ *
+ * It allows the suer to specify if the configuration should be shared or local
* once imported
- *
+ *
* @since 3.4.0
*/
public class ImportLaunchConfigurationsWizard extends Wizard implements IImportWizard {
-
+
private String EXPORT_DIALOG_SETTINGS = "ExportLaunchConfigurations"; //$NON-NLS-1$
-
+
/**
* Constructor
*/
@@ -59,7 +59,7 @@ public class ImportLaunchConfigurationsWizard extends Wizard implements IImportW
public void addPages() {
addPage(new ImportLaunchConfigurationsWizardPage());
}
-
+
/* (non-Javadoc)
* @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
*/

Back to the top