[libgdx] SkeletonViewerAtlas, removed debug output.

This commit is contained in:
Nathan Sweet 2021-06-13 00:35:33 -04:00
parent ee3c6aff3c
commit 06ac2ca28a

View File

@ -64,7 +64,6 @@ class SkeletonViewerAtlas extends TextureAtlas {
for (String endSuffix : endSuffixes) {
for (String dataSuffix : dataSuffixes) {
String suffix = startSuffix + dataSuffix + endSuffix;
System.out.println(suffix);
if (baseName.endsWith(suffix)) {
FileHandle file = findAtlasFile(skeletonFile, baseName.substring(0, baseName.length() - suffix.length()));
if (file != null) return file;
@ -80,9 +79,6 @@ class SkeletonViewerAtlas extends TextureAtlas {
for (String endSuffix : endSuffixes) {
for (String suffix : atlasSuffixes) {
FileHandle file = skeletonFile.sibling(baseName + startSuffix + suffix + endSuffix);
System.out.println(baseName + startSuffix + suffix + endSuffix);
if (file.exists())
System.out.println();
if (file.exists()) return file;
}
}