diff --git a/build.gradle b/build.gradle index 3c6b0f5..f622465 100644 --- a/build.gradle +++ b/build.gradle @@ -36,8 +36,6 @@ dependencies { // include this if you don't want force your users to install owo // sentinel will warn them and give the option to download it automatically include "io.wispforest:owo-sentinel:${project.owo_version}" - // https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple - implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1' } base { diff --git a/src/main/java/themixray/repeating/mod/EasyConfig.java b/src/main/java/themixray/repeating/mod/EasyConfig.java index 0a2843a..6e247b7 100644 --- a/src/main/java/themixray/repeating/mod/EasyConfig.java +++ b/src/main/java/themixray/repeating/mod/EasyConfig.java @@ -1,6 +1,8 @@ package themixray.repeating.mod; -import org.json.simple.JSONValue; +import org.json.simple.parser.*; +import org.json.simple.*; + import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path;