reschke commented on code in PR #184: URL: https://github.com/apache/sling-org-apache-sling-resourceresolver/pull/184#discussion_r2128950557
########## src/main/java/org/apache/sling/resourceresolver/impl/mapping/AliasHandler.java: ########## @@ -469,27 +469,17 @@ private boolean loadAlias( log.warn("containingResource is null for alias on {}, skipping.", resource.getPath()); return false; } else { - Resource parent = containingResource.getParent(); - - if (parent == null) { - log.warn( - "{} is null for alias on {}, skipping.", - containingResource == resource ? "parent" : "grandparent", - resource.getPath()); + String[] aliasArray = resource.getValueMap().get(ResourceResolverImpl.PROP_ALIAS, String[].class); Review Comment: to my defense: that did not change... (scratches head...) -- 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...@sling.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org