\n bei getAllMsg hinzugefügt

This commit is contained in:
Georg Reisinger 2020-11-05 18:23:48 +01:00
parent 5103d2b3cf
commit 9bbe41093c
2 changed files with 1 additions and 1 deletions

View File

@ -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);