Feat/chat tests #317

Merged
m.ginkel merged 14 commits from feat/chat-tests into main 2026-04-27 00:52:31 +02:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 8484f731a8 - Show all commits
@@ -195,8 +195,7 @@ public class ChatBoxController {
() -> {
try {
ChatViewController chatViewController =
new ChatViewController(
this.chatController, chatModel, this);
new ChatViewController(this.chatController, chatModel, this);
ChatKey chatKey;
if (chatType.equals(ChatType.WHISPER)) {
@@ -11,9 +11,8 @@ import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.ScrollPane;
import javafx.scene.control.Tab;
import javafx.scene.control.TextField;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
/** Responsible for the presentation of the ChatModel to the Client */