mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-27 20:05:43 +00:00
@@ -1474,6 +1474,8 @@ public class Main {
|
||||
private boolean yestoall = false;
|
||||
|
||||
private boolean notoall = false;
|
||||
|
||||
private List<String> processedUrls = new ArrayList<>();
|
||||
|
||||
private SWF open(InputStream is, String file, String fileTitle) throws IOException, InterruptedException {
|
||||
final CancellableWorker worker = this;
|
||||
@@ -1513,8 +1515,14 @@ public class Main {
|
||||
}
|
||||
}
|
||||
}, Configuration.parallelSpeedUp.get(), false, true, new UrlResolver() {
|
||||
@Override
|
||||
public boolean doIgnoreUrl(String basePath, String url) {
|
||||
return processedUrls.contains(basePath + "|" + url);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SWF resolveUrl(String file, final String url) {
|
||||
processedUrls.add(file + "|" + url);
|
||||
loadedUrls.add(url);
|
||||
File selFile = null;
|
||||
int opt = -1;
|
||||
|
||||
Reference in New Issue
Block a user