Skip to content

Commit fa39a97

Browse files
committed
fixed whatever game_tests error was
1 parent 2cc92bc commit fa39a97

4 files changed

Lines changed: 3 additions & 7 deletions

File tree

src/main/java/hotciv/helper_Interfaces/attackManager.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
import hotciv.framework.*;
44
import hotciv.standard.*;
5-
import hotciv.standard.utility.Utility;
6-
7-
import java.util.Iterator;
8-
import java.util.Random;
95

106

117
public interface attackManager {

src/main/java/hotciv/helpers/attackManagers/epsilonAttackManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import hotciv.framework.*;
77
import hotciv.helper_Interfaces.attackManager;
88
import hotciv.standard.GameImpl;
9-
import hotciv.standard.utility.Utility;
9+
import hotciv.utility.Utility;
1010

1111
public class epsilonAttackManager implements attackManager {
1212

src/main/java/hotciv/standard/utility/Utility.java renamed to src/main/java/hotciv/utility/Utility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*
1717
*/
18-
package hotciv.standard.utility;
18+
package hotciv.utility;
1919
import hotciv.framework.GameConstants;
2020
import hotciv.framework.Position;
2121
import java.util.ArrayList;

src/test/java/hotciv/standard/TestIterators.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package hotciv.standard;
1919
import hotciv.framework.GameConstants;
2020
import hotciv.framework.Position;
21-
import hotciv.standard.utility.Utility;
21+
import hotciv.utility.Utility;
2222
import org.junit.Test;
2323
import java.util.ArrayList;
2424
import java.util.Iterator;

0 commit comments

Comments
 (0)