Skip to content

Commit

Permalink
[Truffle] Removed an argument we're not using.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvdrum committed Feb 3, 2015
1 parent 24b840d commit fae1f9f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -359,7 +359,7 @@ public OpenNode(OpenNode prev) {
}

@Specialization
public Object open(VirtualFrame frame, RubyString fileName, RubyString mode, UndefinedPlaceholder block) {
public Object open(RubyString fileName, RubyString mode, UndefinedPlaceholder block) {
notDesignedForCompilation();

return RubyFile.open(getContext(), fileName.toString(), mode.toString());
Expand Down

0 comments on commit fae1f9f

Please sign in to comment.