Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java
index 328c722fc..2ed55b5d4 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java
@@ -38,7 +38,7 @@ public interface ILaunchConfigurationMigrationDelegate {
* @throws CoreException if an exception occurs determining the status of the
* given configuration
*/
- public boolean isCandidate(ILaunchConfiguration candidate) throws CoreException;
+ boolean isCandidate(ILaunchConfiguration candidate) throws CoreException;
/**
* Migrates the given launch configuration to be compatible with the current tooling.
@@ -47,6 +47,6 @@ public interface ILaunchConfigurationMigrationDelegate {
* or working copy
* @throws CoreException if an exception occurs during migration
*/
- public void migrate(ILaunchConfiguration candidate) throws CoreException;
+ void migrate(ILaunchConfiguration candidate) throws CoreException;
}

Back to the top