just formatting v_0
authorFrantišek Kučera <franta-hg@frantovo.cz>
Wed, 08 Jan 2014 19:35:20 +0100
branchv_0
changeset 1481b2f40cd432b
parent 147 4a704c1669f4
child 149 6a6f7b384591
just formatting
java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java
     1.1 --- a/java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java	Wed Jan 08 19:24:26 2014 +0100
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java	Wed Jan 08 19:35:20 2014 +0100
     1.3 @@ -38,7 +38,6 @@
     1.4  
     1.5  	public Batch decode(InputStream in) throws BatchException {
     1.6  		return new BatchFromStream(new DataInputStream(in));
     1.7 -
     1.8  	}
     1.9  
    1.10  	private class BatchFromStream implements Batch {
    1.11 @@ -104,7 +103,6 @@
    1.12  			} catch (IOException e) {
    1.13  				throw new BatchException("Unable to read batch header", e);
    1.14  			}
    1.15 -
    1.16  		}
    1.17  	}
    1.18  }