Skip to content

Commit 18a46dc

Browse files
committed
Fixes msgpack#223: MapValueImpl does not implement getMapCursor
1 parent d3c96c3 commit 18a46dc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

msgpack-core/src/main/java/org/msgpack/value/impl/MapValueImpl.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ public void skipAll() {
5757
}
5858
}
5959

60+
@Override
61+
public MapCursor getMapCursor() {
62+
return this;
63+
}
6064

6165
private class MapImpl extends AbstractMap<Value, Value> {
6266

0 commit comments

Comments
 (0)