Skip to content

Commit 4a56995

Browse files
committed
Fix code style and a typo
1 parent b33adb0 commit 4a56995

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/annotations/java/org/truffleruby/annotations/Split.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public enum Split {
1414
DEFAULT,
1515
ALWAYS,
1616
HEURISTIC,
17-
/** Disallow splitting for this CallTarget, which avoids making a eager uninitialized copy of the AST. Useful
17+
/** Disallow splitting for this CallTarget, which avoids making an eager uninitialized copy of the AST. Useful
1818
* notably for methods not specializing on their arguments and just calling a TruffleBoundary. */
1919
NEVER
2020
}

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,13 +300,11 @@ Object dispatch(Frame frame, Object receiver, String methodName, Object[] rubyAr
300300
return callNode.execute(frame, method, receiver, rubyArgs);
301301
}
302302

303-
304303
/** This will be called from the {@link CallInternalMethodNode} child whenever it creates a new
305304
* {@link DirectCallNode}. */
306305
public final void applySplittingInliningStrategy(RootCallTarget callTarget, String methodName,
307306
DirectCallNode callNode) {
308307

309-
310308
final Options options = getContext().getOptions();
311309

312310
// The way that #method_missing is used is usually as an indirection to call some other method, and possibly to

0 commit comments

Comments
 (0)