diff --git a/out/production/RestServer/at/reisinger/server/Main.class b/out/production/RestServer/at/reisinger/server/Main.class index a25bfe9..3c8f756 100644 Binary files a/out/production/RestServer/at/reisinger/server/Main.class and b/out/production/RestServer/at/reisinger/server/Main.class differ diff --git a/src/at/reisinger/server/msg/MsgHandler.java b/src/at/reisinger/server/msg/MsgHandler.java index b3d8ac9..f9f609a 100644 --- a/src/at/reisinger/server/msg/MsgHandler.java +++ b/src/at/reisinger/server/msg/MsgHandler.java @@ -80,7 +80,7 @@ public class MsgHandler { String returnStr = ""; // Print keys and values for (Integer i : msgHashMap.keySet()) { - String item = "key: " + i + " value: " + msgHashMap.get(i); + String item = "key: " + i + " value: " + msgHashMap.get(i) + "\n"; returnStr += item; } System.out.println(returnStr);