Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/Prompter.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/Prompter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/Prompter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/Prompter.java
index 295b139b9..c2aad191b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/Prompter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/Prompter.java
@@ -32,7 +32,7 @@ public class Prompter implements IStatusHandler {
/**
* Prompts the user for input based on the given status and source
* object, blocking the calling thread until the status is resolved.
- *
+ *
* @param status client status code for which a status handler must
* be registered
* @param source object requesting the status to be resolved
@@ -64,7 +64,7 @@ public class Prompter implements IStatusHandler {
}
final Object[] result = new Object[1];
final CoreException[] exception = new CoreException[1];
- final Object lock = this;
+ final Object lock = this;
Runnable r = new Runnable() {
@Override
public void run() {
@@ -79,7 +79,7 @@ public class Prompter implements IStatusHandler {
}
};
DebugUIPlugin.getStandardDisplay().syncExec(r);
-
+
if (exception[0] != null ) {
throw exception[0];
}

Back to the top