diff options
Diffstat (limited to 'src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java')
-rw-r--r-- | src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java b/src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java index 49a0dac..fed8ba8 100644 --- a/src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java +++ b/src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java @@ -12,7 +12,7 @@ import java.nio.file.Path; import java.nio.file.StandardOpenOption; @ApiStatus.Experimental -public abstract class JsonFileCodecConfig extends CodecConfig { +public abstract class JsonFileCodecConfig<T extends JsonFileCodecConfig<T>> extends CodecConfig<T> { private final Path configPath; private final Gson gson; |