runeliteplus: various checkstyle fixes

This commit is contained in:
Zeruth
2019-07-24 00:41:08 -04:00
parent a51f30da09
commit 13146e5dbd
18 changed files with 95 additions and 118 deletions

View File

@@ -26,7 +26,6 @@ package net.runelite.http.api;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import jdk.nashorn.internal.runtime.linker.Bootstrap;
import okhttp3.HttpUrl;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;

View File

@@ -102,7 +102,9 @@ public class XteaClient
{
InputStream in = response.body().byteStream();
// CHECKSTYLE:OFF
return RuneLiteAPI.GSON.fromJson(new InputStreamReader(in), new TypeToken<List<XteaKey>>() {}.getType());
return RuneLiteAPI.GSON.fromJson(new InputStreamReader(in), new TypeToken<List<XteaKey>>()
{
}.getType());
// CHECKSTYLE:ON
}
catch (JsonParseException ex)