From 392617844e578bcf95e2f3603749278213d7d02b Mon Sep 17 00:00:00 2001 From: mswiggers Date: Sat, 1 Sep 2018 12:52:19 +0200 Subject: [PATCH] Fixed typos --- PrintDaemon/src/ServerConnection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PrintDaemon/src/ServerConnection.java b/PrintDaemon/src/ServerConnection.java index 487feb2..30cfa21 100755 --- a/PrintDaemon/src/ServerConnection.java +++ b/PrintDaemon/src/ServerConnection.java @@ -83,14 +83,14 @@ public void run() { ClientConnection connection = ConnectionDb.getInstance().getConnection(id); if (connection != null) { - System.out.println("[" + (new Date()).toString() + "]: Data send to: " + id); + System.out.println("[" + (new Date()).toString() + "]: Data sent to: " + id); connection.send(object.toString()); } else { System.out.println("[" + (new Date()).toString() + "]: Not found: " + id); } } } else { - System.out.println("[" + (new Date()).toString() + "]: Print command send with wrong key, disconnecting..."); + System.out.println("[" + (new Date()).toString() + "]: Print command sent with wrong key, disconnecting..."); close(); } } else {