From 79eeecb8ceae2a4af989f3c932bd1e8110be319d Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:58:14 -0400 Subject: [PATCH] spelling: process Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- .../decompiler/flash/console/CommandLineArgumentParser.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index 8ca31a56a..4cb5d4755 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -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);