tandraschko commented on code in PR #806:
URL: https://github.com/apache/myfaces/pull/806#discussion_r1853594913


##########
impl/src/main/java/org/apache/myfaces/component/search/SearchExpressionHandlerImpl.java:
##########
@@ -534,8 +534,8 @@ public void invokeContextCallback(FacesContext context, 
UIComponent target)
             // At this point if the algorithm hasn't returned and the 
topExpression does not have any separator char
             // we need to do the search backward using findComponent.
             if (target == null 
-                    && searchExpressionContext.getSource() == previous 
-                    && (topExpression.indexOf(separatorChar) == -1) )
+                    && searchExpressionContext.getSource() == previous )
+                    // && (topExpression.indexOf(separatorChar) == -1) ) 
removed for MYFACES-4695

Review Comment:
   if you replace it with 
   `&& (topExpression.indexOf(":@") == -1))`
   
   im fine with it; please dont forget all other branches



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@myfaces.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to