mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-30 05:56:01 +00:00
spelling: convert
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
8322bc41ef
commit
26023c8ef2
@@ -187,7 +187,7 @@ public class GfxConvertor {
|
||||
ret.frameCount = defineSprite.frameCount;
|
||||
ret.hasEndTag = defineSprite.hasEndTag;
|
||||
ret.spriteId = defineSprite.spriteId;
|
||||
converTags(defineSprite, ret);
|
||||
convertTags(defineSprite, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -197,7 +197,7 @@ public class GfxConvertor {
|
||||
* @param target Target
|
||||
* @return List of tags
|
||||
*/
|
||||
public List<Tag> converTags(Timelined source, Timelined target) {
|
||||
public List<Tag> convertTags(Timelined source, Timelined target) {
|
||||
List<Tag> ret = new ArrayList<>();
|
||||
for (Tag t : source.getTags()) {
|
||||
List<Tag> convertedTags = convertTag(t);
|
||||
@@ -290,7 +290,7 @@ public class GfxConvertor {
|
||||
ret.frameCount = gfxSwf.frameCount;
|
||||
ret.gfx = false;
|
||||
ret.hasEndTag = gfxSwf.hasEndTag;
|
||||
converTags(gfxSwf, ret);
|
||||
convertTags(gfxSwf, ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user