xp tracker: clean up imports

This commit is contained in:
Adam
2018-12-20 14:23:45 -05:00
parent 1001ddf11b
commit 989c2880f0

View File

@@ -24,9 +24,7 @@
*/
package net.runelite.http.service.xp;
import java.io.IOException;
import java.time.Instant;
import java.util.concurrent.ExecutionException;
import net.runelite.http.api.xp.XpData;
import net.runelite.http.service.xp.beans.XpEntity;
import org.springframework.beans.factory.annotation.Autowired;
@@ -48,7 +46,7 @@ public class XpTrackerController
}
@RequestMapping("/get")
public XpData get(@RequestParam String username, @RequestParam(required = false) Instant time) throws IOException
public XpData get(@RequestParam String username, @RequestParam(required = false) Instant time)
{
if (time == null)
{