Browse Source

LodGenerator: correct typo in toString()

Stephen Gold 3 years ago
parent
commit
cfa497db24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jme3-core/src/tools/java/jme3tools/optimize/LodGenerator.java

+ 1 - 1
jme3-core/src/tools/java/jme3tools/optimize/LodGenerator.java

@@ -175,7 +175,7 @@ public class LodGenerator {
         
         @Override
         public String toString() {
-            return "Edge{" + "collapsTo " + destination.index + '}';
+            return "Edge{" + "collapseTo " + destination.index + '}';
         }
     }