We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 349cc94 commit 4958094Copy full SHA for 4958094
bson/src/main/org/bson/codecs/pojo/CollectionCodec.java
@@ -27,7 +27,7 @@
27
import java.util.Collection;
28
29
30
-class CollectionCodec<T> implements Codec<Collection<T>> {
+final class CollectionCodec<T> implements Codec<Collection<T>> {
31
private final Class<Collection<T>> encoderClass;
32
private final Codec<T> codec;
33
bson/src/main/org/bson/codecs/pojo/MapCodec.java
@@ -28,7 +28,7 @@
import java.util.Map.Entry;
@SuppressWarnings({"unchecked", "rawtypes"})
-class MapCodec<T> implements Codec<Map<String, T>> {
+final class MapCodec<T> implements Codec<Map<String, T>> {
private final Class<Map<String, T>> encoderClass;
34
0 commit comments