Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2004-02-28 23:15:33 +0000
committerDarin Swanson2004-02-28 23:15:33 +0000
commit7910bd2e5cc75bdef2612f272f644111e51489ee (patch)
tree08596b2a8673aba81d1b6f66cf6713d4653ef23c /org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/ExternalToolMigration.java
parent5682cd7fcf83398740c0632717e015973d1662e6 (diff)
downloadeclipse.platform.debug-7910bd2e5cc75bdef2612f272f644111e51489ee.tar.gz
eclipse.platform.debug-7910bd2e5cc75bdef2612f272f644111e51489ee.tar.xz
eclipse.platform.debug-7910bd2e5cc75bdef2612f272f644111e51489ee.zip
Updated copyright date
Diffstat (limited to 'org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/ExternalToolMigration.java')
-rw-r--r--org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/ExternalToolMigration.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/ExternalToolMigration.java b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/ExternalToolMigration.java
index 2e3fb3336..379812a6c 100644
--- a/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/ExternalToolMigration.java
+++ b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/ExternalToolMigration.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
@@ -33,10 +33,6 @@ import org.eclipse.ui.externaltools.internal.ui.ExternalToolsUIMessages;
* and migrating it to create a new external tool.
*/
public final class ExternalToolMigration {
- /*
- * Ant tags
- */
-
/**
* Structure to represent a variable definition within a
* source string.
@@ -358,9 +354,8 @@ public final class ExternalToolMigration {
} catch (CoreException e) {
ExternalToolsPlugin.getDefault().log(ExternalToolsUIMessages.getString("ExternalToolMigration.37"), e); //$NON-NLS-1$
}
- ILaunchConfigurationWorkingCopy workingCopy;
try {
- workingCopy= config.getWorkingCopy();
+ ILaunchConfigurationWorkingCopy workingCopy= config.getWorkingCopy();
if (runInBackground != ExternalToolsBuilderTab.DEFAULT_LAUNCH_IN_BACKGROUND) {
// Only store the config value if it is not the default. This is
// to be consistent with the way the UI stores attributes.

Back to the top