Skip to content

Commit 4f3f3a1

Browse files
committed
CachedBoxedDispatchNode#toString is excessively verbose
1 parent a0f15a1 commit 4f3f3a1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/truffleruby/language/dispatch/CachedBoxedDispatchNode.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,8 @@ public Object executeDispatch(
107107
@Override
108108
public String toString() {
109109
return StringUtils.format(
110-
"CachedBoxedDispatchNode(:%s, %s@%x, %s)",
110+
"CachedBoxedDispatchNode(:%s, %x, %s)",
111111
getCachedNameAsSymbol().toString(),
112-
expectedShape,
113112
expectedShape.hashCode(),
114113
method == null ? "null" : method.toString());
115114
}

0 commit comments

Comments
 (0)