zipLocation = potentialFile.getName(); // keep only the filename
} else {
zipLocation = location;
}
final Set<Data> results = Sets.newHashSet();
ReaderHelper.readStream(stream, new StreamReader() {
@Override
public void read(InputStream stream) throws IOException {
ZipInputStream zip = new ZipInputStream(stream);
for (ZipEntry en = null; (en = zip.getNextEntry()) != null;) {
if (extractor.canExtract(en.getName())) {