commit 9d3b2046226caaff4fba07b459ce688fae3f1581 Author: Mischa Tuffield Date: Sun Dec 13 20:03:26 2009 +0000 A Patch to put in the "\n" carriage returns to make the TSV output usable diff --git a/src/main/java/uk/co/magus/fourstore/client/Store.java b/src/main/java/uk/co/magus/fourstore/client/Store.java index 6652874..097be43 100644 --- a/src/main/java/uk/co/magus/fourstore/client/Store.java +++ b/src/main/java/uk/co/magus/fourstore/client/Store.java @@ -349,7 +349,7 @@ public class Store { String response = ""; String str; while (null != ((str = in.readLine()))) { - response += str; + response += str+"\n"; } in.close(); return response;