webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/BoardImage.java
changeset 100 8b899ed24f9f
parent 95 36ace6ba1dc1
child 102 bda5bd82b435
     1.1 --- a/webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/BoardImage.java	Fri Sep 18 23:28:13 2009 +0200
     1.2 +++ b/webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/BoardImage.java	Sat Sep 19 14:38:29 2009 +0200
     1.3 @@ -40,13 +40,7 @@
     1.4   * @author Jaroslav Tulach <jtulach@netbeans.org>
     1.5   */
     1.6  final class BoardImage  {
     1.7 -
     1.8 -
     1.9 -    public static Image draw(Board b) {
    1.10 -        return draw(b, 50);
    1.11 -    }
    1.12 -
    1.13 -    private static Image draw(Board b, int fieldSize) {
    1.14 +    static Image draw(Board b, int fieldSize) {
    1.15          int fifth = fieldSize / 10;
    1.16  
    1.17          BufferedImage img = new BufferedImage(fieldSize * 9, fieldSize * 9, BufferedImage.TYPE_INT_ARGB);