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 c406be8bc..585c4f736 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java @@ -5266,7 +5266,7 @@ public final class SWF implements SWFContainerItem, Timelined, Openable { public void sortCharacterIds() { int maxId = Math.max(tags.size(), getNextCharacterId()); int id = maxId; - // first set the chatacter ids to surely not used ids + // first set the character ids to surely not used ids for (Tag tag : getTags()) { if (tag instanceof CharacterTag) { CharacterTag characterTag = (CharacterTag) tag; diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java index cea7638d6..1b70dfbeb 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/xfl/XFLConverter.java @@ -5504,7 +5504,7 @@ public class XFLConverter { private String alignment = null; - private final Set chatacterTags; + private final Set characterTags; private boolean bold = false; @@ -5599,7 +5599,7 @@ public class XFLConverter { colorAlpha = det.textColor.alpha; } - this.chatacterTags = characterTags; + this.characterTags = characterTags; this.characterImportLinkageURL = characterImportLinkageURL; this.lastImportedId = lastImportedId; this.characterNameMap = characterNameMap; @@ -5680,7 +5680,7 @@ public class XFLConverter { } String f = attributes.getValue("face"); if (f != null) { - for (Tag tag : chatacterTags) { + for (Tag tag : characterTags) { if (tag instanceof FontTag) { FontTag ft = (FontTag) tag; String fontName = null;