From 7f44187e6b6d9a011a668e2fe1896c41f5e792e9 Mon Sep 17 00:00:00 2001 From: Yuri Moens Date: Thu, 28 Oct 2021 00:00:31 +0200 Subject: [PATCH] Optimize imports --- CPlanker/src/io/reisub/dreambot/cplanker/tasks/Chop.java | 3 --- .../src/io/reisub/dreambot/cplanker/tasks/GoToSawmill.java | 1 - CPlanker/src/io/reisub/dreambot/cplanker/tasks/PickupNest.java | 1 - 3 files changed, 5 deletions(-) diff --git a/CPlanker/src/io/reisub/dreambot/cplanker/tasks/Chop.java b/CPlanker/src/io/reisub/dreambot/cplanker/tasks/Chop.java index 9629e08..c55dde0 100644 --- a/CPlanker/src/io/reisub/dreambot/cplanker/tasks/Chop.java +++ b/CPlanker/src/io/reisub/dreambot/cplanker/tasks/Chop.java @@ -1,11 +1,8 @@ package io.reisub.dreambot.cplanker.tasks; -import io.reisub.dreambot.util.Constants; import io.reisub.dreambot.util.Util; import org.dreambot.api.methods.Calculations; -import org.dreambot.api.methods.MethodProvider; import org.dreambot.api.methods.container.impl.Inventory; -import org.dreambot.api.methods.filter.Filter; import org.dreambot.api.methods.interactive.GameObjects; import org.dreambot.api.methods.map.Area; import org.dreambot.api.methods.map.Tile; diff --git a/CPlanker/src/io/reisub/dreambot/cplanker/tasks/GoToSawmill.java b/CPlanker/src/io/reisub/dreambot/cplanker/tasks/GoToSawmill.java index 9c6f09a..85dc064 100644 --- a/CPlanker/src/io/reisub/dreambot/cplanker/tasks/GoToSawmill.java +++ b/CPlanker/src/io/reisub/dreambot/cplanker/tasks/GoToSawmill.java @@ -8,7 +8,6 @@ import org.dreambot.api.methods.container.impl.Inventory; import org.dreambot.api.methods.container.impl.bank.Bank; import org.dreambot.api.methods.filter.Filter; import org.dreambot.api.methods.interactive.GameObjects; -import org.dreambot.api.methods.interactive.NPCs; import org.dreambot.api.methods.interactive.Players; import org.dreambot.api.methods.map.Tile; import org.dreambot.api.methods.walking.impl.Walking; diff --git a/CPlanker/src/io/reisub/dreambot/cplanker/tasks/PickupNest.java b/CPlanker/src/io/reisub/dreambot/cplanker/tasks/PickupNest.java index 17cc03d..1961aea 100644 --- a/CPlanker/src/io/reisub/dreambot/cplanker/tasks/PickupNest.java +++ b/CPlanker/src/io/reisub/dreambot/cplanker/tasks/PickupNest.java @@ -3,7 +3,6 @@ package io.reisub.dreambot.cplanker.tasks; import org.dreambot.api.methods.Calculations; import org.dreambot.api.methods.MethodProvider; import org.dreambot.api.methods.container.impl.Inventory; -import org.dreambot.api.methods.filter.Filter; import org.dreambot.api.methods.item.GroundItems; import org.dreambot.api.script.TaskNode; import org.dreambot.api.wrappers.items.GroundItem;