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;
public interface RSFrameProvider {
public interface RSFrameProvider
{
@Import("js5Port")
int getJs5Port();

View File

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

View File

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