Remove unused Slf4j annotations and imports

This commit is contained in:
Jordan Atwood
2019-07-11 00:33:00 -07:00
parent 70f2be507b
commit 41968c725f
19 changed files with 0 additions and 38 deletions

View File

@@ -41,7 +41,6 @@ import java.util.Collections;
import java.util.List;
import java.util.Map;
import javax.annotation.Nullable;
import lombok.extern.slf4j.Slf4j;
import net.runelite.http.api.RuneLiteAPI;
import net.runelite.http.api.config.ConfigEntry;
import net.runelite.http.api.config.Configuration;
@@ -50,7 +49,6 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
@Slf4j
public class ConfigService
{
private final Gson GSON = RuneLiteAPI.GSON;

View File

@@ -31,7 +31,6 @@ import com.google.common.cache.LoadingCache;
import java.io.IOException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import lombok.extern.slf4j.Slf4j;
import net.runelite.http.api.hiscore.HiscoreClient;
import net.runelite.http.api.hiscore.HiscoreEndpoint;
import net.runelite.http.api.hiscore.HiscoreResult;
@@ -39,7 +38,6 @@ import okhttp3.HttpUrl;
import org.springframework.stereotype.Service;
@Service
@Slf4j
public class HiscoreService
{
private final HiscoreClient hiscoreClient = new HiscoreClient();

View File

@@ -26,7 +26,6 @@ package net.runelite.http.service.worlds;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import lombok.extern.slf4j.Slf4j;
import net.runelite.http.api.worlds.WorldResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.CacheControl;
@@ -38,7 +37,6 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/worlds")
@Slf4j
public class WorldController
{
@Autowired