# HG changeset patch # User František Kučera # Date 1389206120 -3600 # Node ID 1b2f40cd432b4961d0b06caf3d483b429e091206 # Parent 4a704c1669f4ff712a70699d86bc19654f0aee06 just formatting diff -r 4a704c1669f4 -r 1b2f40cd432b java/sql-dk/src/info/globalcode/sql/dk/batch/BatchDecoder.java --- 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); } - } } }