aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java
diff options
context:
space:
mode:
authorisXander <xander@isxander.dev>2024-06-12 17:15:09 +0100
committerisXander <xander@isxander.dev>2024-06-12 17:15:09 +0100
commit566fb6c498d571281c94029f8dfbac5e5077600c (patch)
tree7b92ee139e0e6e2cdd8d8619c62f4f7d031aad42 /src/main/java/dev/isxander/yacl3/config/v3/JsonFileCodecConfig.java
parent305718e163f91802a4bc1c1ed6540febb2ce204e (diff)
downloadYetAnotherConfigLib-566fb6c498d571281c94029f8dfbac5e5077600c.tar.gz
YetAnotherConfigLib-566fb6c498d571281c94029f8dfbac5e5077600c.tar.bz2
YetAnotherConfigLib-566fb6c498d571281c94029f8dfbac5e5077600c.zip
Changelog and minor changes
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.java2
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;