Skip to content
Snippets Groups Projects
Commit fc0739ce authored by Mick Jordan's avatar Mick Jordan
Browse files

handle Truffle API change (missed a class)

parent f0def168
Branches
No related tags found
No related merge requests found
...@@ -136,7 +136,7 @@ public class TraceHandling { ...@@ -136,7 +136,7 @@ public class TraceHandling {
} }
@Override @Override
public void onReturnExceptional(Probe probe, Node node, VirtualFrame frame, Exception exception) { public void onReturnExceptional(Probe probe, Node node, VirtualFrame frame, Throwable exception) {
if (!disabled()) { if (!disabled()) {
indent -= INDENT; indent -= INDENT;
} }
...@@ -168,7 +168,7 @@ public class TraceHandling { ...@@ -168,7 +168,7 @@ public class TraceHandling {
} }
public void onReturnExceptional(Probe probe, Node node, VirtualFrame vFrame, Exception exception) { public void onReturnExceptional(Probe probe, Node node, VirtualFrame vFrame, Throwable exception) {
if (!disabled()) { if (!disabled()) {
// //
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment