From 4c7ebd76180ac1007de4dde5b65c5ffd15578458 Mon Sep 17 00:00:00 2001 From: MeexReay <127148610+MeexReay@users.noreply.github.com> Date: Tue, 30 May 2023 00:49:37 +0300 Subject: [PATCH] added org json simple --- build.gradle | 2 -- src/main/java/themixray/repeating/mod/EasyConfig.java | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) 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;