SignoutRule testé

This commit is contained in:
Maximilien LEDOUX
2022-02-26 15:20:05 +01:00
parent 2c0d56b304
commit d3361a7679
2 changed files with 15 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ public abstract class ProtocolWriter {
public String execute(String... datas) {
// Concatatène le nom de la commande avec les données (trim), avec un espace entre chaque
String command = null;
StringJoiner builder = new StringJoiner(" ", this.cmdName, "");
StringJoiner builder = new StringJoiner(" ", this.cmdName, "\r\n");
for (String data : datas)
builder.add(data);