You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2021/09/23 15:22:30 UTC

[myfaces-tobago] 02/02: Update AbstractUIMessages.java

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit d2c69d1761cd22e027df6e96917156432dde4966
Author: Udo Schnurpfeil <gi...@schnurpfeil.de>
AuthorDate: Thu Sep 23 17:07:44 2021 +0200

    Update AbstractUIMessages.java
---
 .../apache/myfaces/tobago/internal/component/AbstractUIMessages.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMessages.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMessages.java
index 553fbea..3ce7a35 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMessages.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUIMessages.java
@@ -39,7 +39,7 @@ public abstract class AbstractUIMessages extends javax.faces.component.UIMessage
 
     final Iterator<String> clientIds;
     if (isGlobalOnly()) {
-      clientIds = Collections.singleton((String)null).iterator();
+      clientIds = Collections.singleton((String) null).iterator();
     } else if (getFor() != null) {
       clientIds = Collections.singleton(getFor()).iterator();
     } else {