Skip to content

Commit

Permalink
CDR-1421 fixed attribute name matching
Browse files Browse the repository at this point in the history
  • Loading branch information
HolgerReiseVSys authored Oct 24, 2024
1 parent 7cd1e41 commit 71c24e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected <T> Stream<? extends Pair<String, Locatable>> findChildrenNotInTemplat
private static boolean matches(String attributeName, Locatable locatable, WebTemplateNode n) {
AqlPath.AqlNode lastNode = n.getAqlPathDto().getLastNode();

if (!attributeName.matches(lastNode.getName())) {
if (!attributeName.equals(lastNode.getName())) {
return false;
}

Expand Down

0 comments on commit 71c24e0

Please sign in to comment.