Skip to content

Commit cadd125

Browse files
authored
Make AbstractMapCodec package-access (#1012)
1 parent dc0d5a1 commit cadd125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bson/src/main/org/bson/codecs/AbstractMapCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.HashMap;
2424
import java.util.Map;
2525

26-
public abstract class AbstractMapCodec<T> implements Codec<Map<String, T>> {
26+
abstract class AbstractMapCodec<T> implements Codec<Map<String, T>> {
2727

2828
abstract T readValue(BsonReader reader, DecoderContext decoderContext);
2929

0 commit comments

Comments
 (0)