From 5e4e1449d2a079d58d9b4306369f42d38963ab51 Mon Sep 17 00:00:00 2001 From: delvh Date: Sat, 16 Nov 2019 14:16:27 +0100 Subject: [PATCH] updated Javadoc --- src/main/java/envoy/client/ui/ChatWindow.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/envoy/client/ui/ChatWindow.java b/src/main/java/envoy/client/ui/ChatWindow.java index b9aea74..32b024b 100644 --- a/src/main/java/envoy/client/ui/ChatWindow.java +++ b/src/main/java/envoy/client/ui/ChatWindow.java @@ -306,7 +306,7 @@ public class ChatWindow extends JFrame { } /** - * Updates the data model and the UI every repeatedly after a certain amount of + * Updates the data model and the UI repeatedly after a certain amount of * time. * * @param timeout the amount of time that passes between two requests sent to @@ -346,4 +346,4 @@ public class ChatWindow extends JFrame { * Marks messages in the current chat as {@code READ}. */ private void readCurrentChat() { if (currentChat != null) { localDB.setMessagesToRead(currentChat); } } -} \ No newline at end of file +}