java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java
branchv_0
changeset 148 1b2f40cd432b
parent 146 4f4f515df807
--- a/java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java	Wed Jan 08 19:24:26 2014 +0100
+++ b/java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java	Wed Jan 08 19:35:20 2014 +0100
@@ -38,7 +38,6 @@
 
 	public Batch decode(InputStream in) throws BatchException {
 		return new BatchFromStream(new DataInputStream(in));
-
 	}
 
 	private class BatchFromStream implements Batch {
@@ -104,7 +103,6 @@
 			} catch (IOException e) {
 				throw new BatchException("Unable to read batch header", e);
 			}
-
 		}
 	}
 }