[libgdx] getPathSuffix -> hasPathSuffix.

This commit is contained in:
Nathan Sweet 2026-03-11 00:17:41 -04:00
parent 7ba2bfec77
commit 831cf1a488
2 changed files with 2 additions and 6 deletions

View File

@ -2537,11 +2537,7 @@ public class SkeletonSerializer {
json.writeValue(obj.getHeight()); json.writeValue(obj.getHeight());
json.writeName("sequence"); json.writeName("sequence");
if (obj.getSequence() == null) { writeSequence(obj.getSequence());
json.writeNull();
} else {
writeSequence(obj.getSequence());
}
json.writeName("parentMesh"); json.writeName("parentMesh");
if (obj.getParentMesh() == null) { if (obj.getParentMesh() == null) {

View File

@ -144,7 +144,7 @@ public class Sequence {
this.setupIndex = index; this.setupIndex = index;
} }
public boolean getPathSuffix () { public boolean hasPathSuffix () {
return pathSuffix; return pathSuffix;
} }