mirror of
https://github.com/lov3b/Schack.git
synced 2025-01-18 21:00:11 +01:00
Removed souts & optimized imports
This commit is contained in:
parent
ae634b89c1
commit
af003930b1
@ -3,8 +3,6 @@ package schack;
|
||||
import java.awt.Point;
|
||||
import java.io.IOException;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
public class Bishop extends Piece {
|
||||
|
||||
|
@ -2,10 +2,8 @@ package schack;
|
||||
|
||||
import java.awt.Point;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.ArrayList;
|
||||
import java.util.LinkedHashSet;
|
||||
import javax.imageio.ImageIO;
|
||||
|
||||
public final class King extends Piece {
|
||||
|
||||
@ -55,7 +53,6 @@ public final class King extends Piece {
|
||||
}
|
||||
|
||||
}
|
||||
System.out.println("Len of movable: " + movable.size());
|
||||
return movable;
|
||||
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ package schack;
|
||||
|
||||
import java.awt.Point;
|
||||
import java.io.IOException;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedHashSet;
|
||||
|
||||
public class Rook extends Piece {
|
||||
@ -50,7 +49,6 @@ public class Rook extends Piece {
|
||||
break;
|
||||
}
|
||||
}
|
||||
System.out.println("Len of movable: " + movable.size());
|
||||
return movable;
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user