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 }