Skip to content

Commit

Permalink
Update CHANGELOG; Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnickolay committed Jan 25, 2021
1 parent 0e74dc8 commit 783c3cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Compatibility:
* Support the `inherit` parameter for `Module#{private, protected, public}_method_defined?`.
* Implement `Thread.pending_interrupt?` and `Thread#pending_interrupt?` (#2219).
* Implement `rb_lastline_set` (#2170).
* Refinements take place at `Object#method` and `Module#instance_method` (#2004, @ssnickolay).

Performance:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected int getCacheLimit() {
"name.equals(cachedName)",
"contextReference.get() == cachedContext"
}, limit = "getCacheLimit()")
public RubyMethod doCached(Frame frame, Object self, Object name,
protected RubyMethod doCached(Frame frame, Object self, Object name,
DispatchConfiguration dispatchConfig,
Frame callerFrame,
@Cached("self") Object cachedSelf,
Expand All @@ -81,7 +81,7 @@ public RubyMethod doCached(Frame frame, Object self, Object name,


@Specialization(replaces = "doCached")
public RubyMethod doGeneric(Frame frame, Object self, Object name,
protected RubyMethod doGeneric(Frame frame, Object self, Object name,
DispatchConfiguration dispatchConfig,
Frame callerFrame,
@CachedContext(RubyLanguage.class) RubyContext context,
Expand Down

0 comments on commit 783c3cc

Please sign in to comment.