mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 06:06:17 +00:00
spelling: process
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
1829c16f6a
commit
79eeecb8ce
@@ -4124,7 +4124,7 @@ public class CommandLineArgumentParser {
|
||||
|
||||
subcnt++;
|
||||
try {
|
||||
proccessInfoSWF(file, worker.get(), pw);
|
||||
processInfoSWF(file, worker.get(), pw);
|
||||
} catch (CancellationException | ExecutionException | InterruptedException ex) {
|
||||
logger.log(Level.WARNING, "Loading SWF {0} was cancelled.", streamEntry.getKey());
|
||||
}
|
||||
@@ -4160,7 +4160,7 @@ public class CommandLineArgumentParser {
|
||||
worker.execute();
|
||||
|
||||
try {
|
||||
proccessInfoSWF(null, worker.get(), pw);
|
||||
processInfoSWF(null, worker.get(), pw);
|
||||
} catch (CancellationException | ExecutionException | InterruptedException ex) {
|
||||
logger.log(Level.WARNING, "Loading SWF was cancelled.");
|
||||
}
|
||||
@@ -4185,7 +4185,7 @@ public class CommandLineArgumentParser {
|
||||
return ds;
|
||||
}
|
||||
|
||||
private static void proccessInfoSWF(File bundle, SWF swf, PrintWriter pw) throws IOException {
|
||||
private static void processInfoSWF(File bundle, SWF swf, PrintWriter pw) throws IOException {
|
||||
pw.println("[swf]");
|
||||
pw.println("file=" + (bundle == null ? swf.getFile() : bundle + ":" + swf.getFileTitle()));
|
||||
pw.println("fileSize=" + swf.fileSize);
|
||||
|
||||
Reference in New Issue
Block a user