File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
src/main/java/com/bencodez/simpleapi Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 158158 <dependency >
159159 <groupId >org.spigotmc</groupId >
160160 <artifactId >spigot-api</artifactId >
161- <version >1.21.8 -R0.1-SNAPSHOT</version >
161+ <version >1.21.9 -R0.1-SNAPSHOT</version >
162162 <scope >provided</scope >
163163 </dependency >
164164 <dependency >
165165 <groupId >net.md-5</groupId >
166166 <artifactId >bungeecord-api</artifactId >
167- <version >1.21-R0.3 </version >
167+ <version >1.21-R0.4 </version >
168168 <scope >provided</scope >
169169 </dependency >
170170 <dependency >
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ public BungeeJsonFile(File file) {
5757 }
5858 }
5959
60+ @ SuppressWarnings ("deprecation" )
6061 private JsonObject attemptPartialRecovery (File file ) {
6162 JsonObject recoveredData = new JsonObject ();
6263 try (FileReader fileReader = new FileReader (file );
Original file line number Diff line number Diff line change 3737 * @since 1.3
3838 */
3939public final class JsonParser {
40+ @ SuppressWarnings ("deprecation" )
4041 public static JsonElement parseReader (JsonReader reader ) throws JsonIOException , JsonSyntaxException {
4142 boolean lenient = reader .isLenient ();
4243 reader .setLenient (true );
You can’t perform that action at this time.
0 commit comments