Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mswiggers committed Sep 1, 2018
1 parent 5ccf9ab commit 3926178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PrintDaemon/src/ServerConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3926178

Please sign in to comment.