Skip to content

Commit

Permalink
Fix MYFACES-4634: check class variable against null rather than passe…
Browse files Browse the repository at this point in the history
…d parameter (#622)
  • Loading branch information
Jmcleodfoss authored Oct 6, 2023
1 parent 41fbb9e commit 1cf832e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public String getSuggestedValue()

public void addAttributeExtension(String attributeExtension)
{
if (attributeExtension == null)
if (attributeExtensions == null)
{
attributeExtensions = new ArrayList<>(1);
}
Expand Down

0 comments on commit 1cf832e

Please sign in to comment.