mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-05 19:47:00 -04:00
Make FailSoftMapCodec final.
This commit is contained in:
parent
c970836426
commit
0c0642a1c4
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ import org.slf4j.LoggerFactory;
|
|||
* Has the same functionality as {@link UnboundedMapCodec}.
|
||||
* But it will fail-soft when an entry cannot be deserialized.
|
||||
*/
|
||||
public record FailSoftMapCodec<K, V>(Codec<K> keyCodec, Codec<V> elementCodec) implements BaseMapCodec<K, V>, Codec<Map<K, V>> {
|
||||
public final record FailSoftMapCodec<K, V>(Codec<K> keyCodec, Codec<V> elementCodec) implements BaseMapCodec<K, V>, Codec<Map<K, V>> {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger("FailSoftMapCodec");
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue