Browse Source

[libgdx] SkeletonViewerAtlas, removed debug output.

Nathan Sweet 4 years ago
parent
commit
06ac2ca28a

+ 0 - 4
spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/SkeletonViewerAtlas.java

@@ -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;
 				}
 			}