Skip to content

Commit

Permalink
Fix ECJ warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Feb 9, 2024
1 parent 763ee32 commit 54c6482
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ private TruffleExecutable[] getExecutables() {
};
}

public InterpreterProxy instanceFor(final MaterializedFrame frame, final int numReceiverAndArguments) {
this.frame = frame;
this.numReceiverAndArguments = numReceiverAndArguments;
public InterpreterProxy instanceFor(final MaterializedFrame currentFrame, final int currentNumReceiverAndArguments) {
this.frame = currentFrame;
this.numReceiverAndArguments = currentNumReceiverAndArguments;
return this;
}

Expand Down

0 comments on commit 54c6482

Please sign in to comment.