Collada importer fix

line 4256 here is :



 /**
     * squelchErrors sets if the ColladaImporter should spit out errors or not
     *
     * @param b
     */
    public static void squelchErrors(boolean b) {
        squelch = true;
    }



whereas I guess it should be sqhelch = b;

doh, thats pretty obvious.



Index: src/com/jmex/model/collada/ColladaImporter.java
===================================================================
--- src/com/jmex/model/collada/ColladaImporter.java   (revision 4046)
+++ src/com/jmex/model/collada/ColladaImporter.java   (working copy)
@@ -4259,7 +4259,7 @@
      * @param b
      */
     public static void squelchErrors(boolean b) {
-        squelch = true;
+        squelch = b;
     }
 
     public static ColladaImporter getInstance() {

commited