Skip to content

Commit 206bca7

Browse files
committed
Use the correctly spelled method on TruffleStackTrace
1 parent 568058f commit 206bca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/truffleruby/language/backtrace/Backtrace.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public Activation[] getActivations(TruffleException truffleException) {
8989

9090
// The stacktrace is computed here if it was not already computed and stored in the
9191
// TruffleException with TruffleStackTraceElement.fillIn().
92-
final List<TruffleStackTraceElement> stackTrace = TruffleStackTrace.getStacktrace((Throwable) truffleException);
92+
final List<TruffleStackTraceElement> stackTrace = TruffleStackTrace.getStackTrace((Throwable) truffleException);
9393

9494
final List<Activation> activations = new ArrayList<>();
9595
final RubyContext context = RubyLanguage.getCurrentContext();

0 commit comments

Comments
 (0)