java/copy-image-resizer/src/cz/frantovo/copyImageResizer/RecursiveOptions.java
changeset 7 8e9983260624
parent 6 b329573c76d7
child 12 27e41d7f5e8d
     1.1 --- a/java/copy-image-resizer/src/cz/frantovo/copyImageResizer/RecursiveOptions.java	Mon Nov 17 01:17:02 2014 +0100
     1.2 +++ b/java/copy-image-resizer/src/cz/frantovo/copyImageResizer/RecursiveOptions.java	Mon Nov 17 17:02:48 2014 +0100
     1.3 @@ -63,34 +63,4 @@
     1.4  	public void addSize(SizeSpecification size) {
     1.5  		sizes.add(size);
     1.6  	}
     1.7 -
     1.8 -	public static class SizeSpecification {
     1.9 -
    1.10 -		private final int width;
    1.11 -		private final int height;
    1.12 -		private final String directory;
    1.13 -
    1.14 -		public SizeSpecification(int width, int height, String directory) {
    1.15 -			this.width = width;
    1.16 -			this.height = height;
    1.17 -			this.directory = directory;
    1.18 -		}
    1.19 -
    1.20 -		public int getWidth() {
    1.21 -			return width;
    1.22 -		}
    1.23 -
    1.24 -		public int getHeight() {
    1.25 -			return height;
    1.26 -		}
    1.27 -
    1.28 -		public String getDirectory() {
    1.29 -			return directory;
    1.30 -		}
    1.31 -
    1.32 -		@Override
    1.33 -		public String toString() {
    1.34 -			return width + "×" + height + " → " + directory;
    1.35 -		}
    1.36 -	}
    1.37  }