Skip to content

Commit

Permalink
Stub empty string for description if null
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrdoherty committed Oct 18, 2023
1 parent 980e656 commit 7230aa2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void setDescription(WdkModelText description) {
}

public String getDescription() {
return _description;
return _description == null ? "" : _description;
}

@Override
Expand Down

0 comments on commit 7230aa2

Please sign in to comment.