updated Javadoc

This commit is contained in:
delvh 2019-11-16 14:16:27 +01:00 committed by GitHub
parent 84e8e42fbb
commit 812c4e82ec
1 changed files with 2 additions and 2 deletions

View File

@ -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. * time.
* *
* @param timeout the amount of time that passes between two requests sent to * @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}. * Marks messages in the current chat as {@code READ}.
*/ */
private void readCurrentChat() { if (currentChat != null) { localDB.setMessagesToRead(currentChat); } } private void readCurrentChat() { if (currentChat != null) { localDB.setMessagesToRead(currentChat); } }
} }