in src/main/java/org/apache/sling/testing/teleporter/client/ClassResourceVisitor.java [103:109]
private boolean jarEntryMatches(String givenPath, String entryPath) {
if(givenPath.endsWith("/")) {
return entryPath.startsWith(givenPath);
} else {
return entryPath.equals(givenPath);
}
}