Skip to content

Commit

Permalink
Fix primefaces#11483: Showcase Mojarra NPE check (primefaces#11511)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Feb 22, 2024
1 parent 67c2700 commit b8c7175
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ public void increment() {
}

public void handleKeyEvent() {
text5 = text5.toUpperCase();
if (text5 != null) {
text5 = text5.toUpperCase();
}
}

public String getText1() {
Expand Down

0 comments on commit b8c7175

Please sign in to comment.