Skip to content

Commit 4b1f68b

Browse files
committed
fix typo in primary types of sling:Folder and sling:OrderedFolder
1 parent c239c65 commit 4b1f68b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

accesscontrolvalidator-bundle/src/main/java/biz/netcentric/aem/tools/acvalidator/service/ACValidatorServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public synchronized TestRun runTests(String path, boolean skipSimulation) throws
115115
}
116116

117117
private boolean isFolder(String primaryType) {
118-
return "nt:folder".equals(primaryType) || "sling:folder".equals(primaryType) || "sling:ordererfolder".equals(primaryType);
118+
return "nt:folder".equals(primaryType) || "sling:Folder".equals(primaryType) || "sling:OrderedFolder".equals(primaryType);
119119
}
120120

121121
@Override

0 commit comments

Comments
 (0)