Skip to content

Commit

Permalink
fix: IllegalArgumentException: Argument for @NotNull parameter
Browse files Browse the repository at this point in the history
'fragment' of com/intellij/ui/SimpleColoredComponent.append must not be
null

Fixes redhat-developer#473

Signed-off-by: azerr <azerr@redhat.com>
  • Loading branch information
angelozerr committed Sep 18, 2024
1 parent 96bd5f3 commit 9d1e0fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class LanguageServerProcessTreeNode extends DefaultMutableTreeNode {
public LanguageServerProcessTreeNode(LanguageServerWrapper languageServer, DefaultTreeModel treeModel) {
this.languageServer = languageServer;
this.treeModel = treeModel;
this.serverStatus = ServerStatus.none;
setServerStatus(ServerStatus.none);
}

public void setServerStatus(ServerStatus serverStatus) {
Expand Down

0 comments on commit 9d1e0fe

Please sign in to comment.