From 24896717514df3dea0f3cb18dddfae1722e4ce66 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:25:49 -0400 Subject: [PATCH] spelling: identifier Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java | 2 +- .../src/com/jpexs/decompiler/flash/types/filters/FILTER.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java index 84b9a3b82..f151fb415 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java @@ -1714,7 +1714,7 @@ public final class SWF implements SWFContainerItem, Timelined, Openable { /** * Gets all tags with specified type id. * - * @param tagId Identificator of tag type + * @param tagId Identifier of tag type * @return List of tags */ public List getTagData(int tagId) { diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java index cf38b2347..76d62fb92 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/filters/FILTER.java @@ -37,7 +37,7 @@ import org.w3c.dom.Element; public abstract class FILTER implements Serializable { /** - * Identificator of type of the filter + * Identifier of type of the filter */ @SWFType(BasicType.UI8) public int id; @@ -45,7 +45,7 @@ public abstract class FILTER implements Serializable { /** * Constructor * - * @param id Type identificator + * @param id Type identifier */ public FILTER(int id) { this.id = id;