Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ThrowInstruction.java')
-rw-r--r--org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ThrowInstruction.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ThrowInstruction.java b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ThrowInstruction.java
index 037f078a2..54e7a10e9 100644
--- a/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ThrowInstruction.java
+++ b/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/ThrowInstruction.java
@@ -30,8 +30,9 @@ public class ThrowInstruction extends CompoundInstruction {
/**
* @see org.eclipse.jdt.internal.debug.eval.ast.instructions.Instruction#execute()
*/
+ @Override
public void execute() throws CoreException {
- IJavaObject exception= (IJavaObject)popValue();
+ IJavaObject exception = (IJavaObject) popValue();
final IJavaThread javaThread = getContext().getThread();
javaThread.stop(exception);
javaThread.queueRunnable(new Runnable() {

Back to the top