Fix checkstyle errors

This commit is contained in:
Jonatino
2021-03-22 23:16:54 -04:00
parent 63aa0cda1a
commit 8b40493e54
3 changed files with 6 additions and 8 deletions

View File

@@ -2,8 +2,8 @@ package net.runelite.rs.api;
import net.runelite.mapping.Import; import net.runelite.mapping.Import;
public interface RSFrameProvider { public interface RSFrameProvider
{
@Import("js5Port") @Import("js5Port")
int getJs5Port(); int getJs5Port();

View File

@@ -2,12 +2,11 @@ package net.runelite.rs.api;
import net.runelite.mapping.Import; import net.runelite.mapping.Import;
public interface RSMinimapRenderer { public interface RSMinimapRenderer
{
@Import("cacheParentPaths") @Import("cacheParentPaths")
String[] getCacheParentPaths(); String[] getCacheParentPaths();
@Import("cacheParentPaths") @Import("cacheParentPaths")
void setCacheParentPaths(String[] cacheParentPaths); void setCacheParentPaths(String[] cacheParentPaths);
} }

View File

@@ -2,12 +2,11 @@ package net.runelite.rs.api;
import net.runelite.mapping.Import; import net.runelite.mapping.Import;
public interface RSTimer { public interface RSTimer
{
@Import("cacheSubPaths") @Import("cacheSubPaths")
String[] getCacheSubPaths(); String[] getCacheSubPaths();
@Import("cacheSubPaths") @Import("cacheSubPaths")
void setCacheSubPaths(String[] cacheSubPaths); void setCacheSubPaths(String[] cacheSubPaths);
} }