if (next.endsWith("/")) {
processPaths(next);
next = null;
} else if (next.endsWith(".jar")) {
try {
resourceFinderStack.push(new JarFileScanner(sc.getResourceAsStream(next), "", true));
} catch (IOException ioe) {
throw new ResourceFinderException(ioe);
}
next = null;
}