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 2014/09/10 10:12:14 UTC

svn commit: r1623934 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java

Author: lofwyr
Date: Wed Sep 10 08:12:13 2014
New Revision: 1623934

URL: http://svn.apache.org/r1623934
Log:
code style

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java?rev=1623934&r1=1623933&r2=1623934&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/util/ComponentUtils.java Wed Sep 10 08:12:13 2014
@@ -942,9 +942,9 @@ public final class ComponentUtils {
    * Resolves the real clientIds.
    */
   public static String[] evaluateClientIds(
-      final FacesContext context, final UIComponent component, final String[] componentId) {
-    final List<String> result = new ArrayList<String>(componentId.length);
-    for (final String id : componentId) {
+      final FacesContext context, final UIComponent component, final String[] componentIds) {
+    final List<String> result = new ArrayList<String>(componentIds.length);
+    for (final String id : componentIds) {
       if (!StringUtils.isBlank(id)) {
         final String clientId = evaluateClientId(context, component, id);
         if (clientId != null) {