Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/jruby/java/proxies/MapJavaProxy.java
Original file line number Diff line number Diff line change
@@ -303,7 +303,7 @@ public IRubyObject to_s(ThreadContext context) {
/** rb_hash_rehash
*
*/
@JRubyMethod(name = "rehash")
@JRubyMethod(name = "rehash", notImplemented = true)
public RubyHash rehash() {
return getOrCreateRubyHashMap().rehash();
}
@@ -477,7 +477,7 @@ public RubyArray rb_values() {
/** rb_hash_shift
*
*/
@JRubyMethod(name = "shift")
@JRubyMethod(name = "shift", notImplemented = true)
public IRubyObject shift(ThreadContext context) {
return getOrCreateRubyHashMap().shift(context);
}

0 comments on commit 9e130a3

Please sign in to comment.