diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/BinaryDataExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/BinaryDataExporter.java index 38245d29d..2f1525f95 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/BinaryDataExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/BinaryDataExporter.java @@ -89,7 +89,7 @@ public class BinaryDataExporter { File classFile = new File(outdir + File.separator + Helper.makeFileName(className + ext)); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); ret.add(classFile); } file.delete(); diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/Font4Exporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/Font4Exporter.java index 940da11c3..6c33759e5 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/Font4Exporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/Font4Exporter.java @@ -94,7 +94,7 @@ public class Font4Exporter { File classFile = new File(outdir + File.separator + Helper.makeFileName(className + ext)); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); ret.add(classFile); } file.delete(); diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java index 77783a817..943417a21 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FontExporter.java @@ -109,7 +109,7 @@ public class FontExporter { File classFile = new File(outdir + File.separator + Helper.makeFileName(className + ext)); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); ret.add(classFile); } file.delete(); diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FrameExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FrameExporter.java index 1cc4677a6..a351ad3b5 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FrameExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/FrameExporter.java @@ -184,7 +184,7 @@ public class FrameExporter { boolean usesTransparency, Color backgroundColor, FrameExportSettings settings - ) { + ) { this.tim = tim; this.fframes = fframes; this.evl = evl; diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ImageExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ImageExporter.java index 3eff16887..27599dae2 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ImageExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ImageExporter.java @@ -156,7 +156,7 @@ public class ImageExporter { File classAlphaPngFile = new File(outdir + File.separator + Helper.makeFileName(className + ".alpha.png")); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); if (alphaPngFile.exists()) { Files.copy(alphaPngFile.toPath(), classAlphaPngFile.toPath(), StandardCopyOption.REPLACE_EXISTING); } diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MorphShapeExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MorphShapeExporter.java index 144e90f35..8649ed525 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MorphShapeExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MorphShapeExporter.java @@ -231,19 +231,19 @@ public class MorphShapeExporter { File classFileEnd = new File(outdir + File.separator + Helper.makeFileName(className + ".end" + settings.getFileExtension())); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); ret.add(classFile); if (fileStart.exists()) { new RetryTask(() -> { Files.copy(fileStart.toPath(), classFileStart.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); } if (fileEnd.exists()) { new RetryTask(() -> { Files.copy(fileEnd.toPath(), classFileEnd.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); } } file.delete(); diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MovieExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MovieExporter.java index 016244049..608f35503 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MovieExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/MovieExporter.java @@ -100,7 +100,7 @@ public class MovieExporter { File classFile = new File(outdir + File.separator + Helper.makeFileName(className + ".flv")); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); ret.add(classFile); } file.delete(); diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ShapeExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ShapeExporter.java index 04c585c77..0aff26592 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ShapeExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ShapeExporter.java @@ -171,7 +171,7 @@ public class ShapeExporter { File classFile = new File(outdir + File.separator + Helper.makeFileName(className + settings.getFileExtension())); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); ret.add(classFile); } file.delete(); diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/SoundExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/SoundExporter.java index ca7b96582..21279b100 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/SoundExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/SoundExporter.java @@ -117,13 +117,13 @@ public class SoundExporter { } }, handler).run(); - Set classNames = (st instanceof CharacterTag) ? ((CharacterTag)st).getClassNames() : new HashSet<>(); + Set classNames = (st instanceof CharacterTag) ? ((CharacterTag) st).getClassNames() : new HashSet<>(); if (Configuration.as3ExportNamesUseClassNamesOnly.get() && !classNames.isEmpty()) { for (String className : classNames) { File classFile = new File(outdir + File.separator + Helper.makeFileName(className + ext)); new RetryTask(() -> { Files.copy(file.toPath(), classFile.toPath(), StandardCopyOption.REPLACE_EXISTING); - },handler).run(); + }, handler).run(); ret.add(classFile); } file.delete();