xtea client: fix checkstyle violation

This commit is contained in:
Adam
2017-09-28 22:40:05 -04:00
parent 72ee72d38e
commit a8ecde7913

View File

@@ -88,7 +88,7 @@ public class XteaClient
try (ResponseBody body = response.body())
{
InputStream in = body.byteStream();
return RuneliteAPI.GSON.fromJson(new InputStreamReader(in), new TypeToken<List<XteaKey>>(){}.getType());
return RuneliteAPI.GSON.fromJson(new InputStreamReader(in), new TypeToken<List<XteaKey>>() { }.getType());
}
catch (JsonParseException ex)
{