Skip to content

Commit 972a12f

Browse files
aardvark179eregon
authored andcommitted
Fix linter warnings.
1 parent b4fca33 commit 972a12f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/truffleruby/interop/ProxyForeignObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected Object send(Message message, Object[] rawArgs,
5050
if (message == EXECUTABLE || message == INSTANTIATE) {
5151
args = (Object[]) rawArgs[0];
5252
} else if (message == INVOKE) {
53-
args = ArrayUtils.unshift((Object[])rawArgs[1], rawArgs[0]);
53+
args = ArrayUtils.unshift((Object[]) rawArgs[1], rawArgs[0]);
5454
} else {
5555
args = rawArgs;
5656
}

0 commit comments

Comments
 (0)