checkpoint
[sbp.git] / src / edu / berkeley / sbp / util / Reflection.java
index 2cc7b0a..6a4361f 100644 (file)
@@ -219,7 +219,7 @@ public final class Reflection {
                 if (f[i].getType() == String.class) tgt = stringify(tgt);
                 // FUGLY
                 tgt = coerce(tgt, f[i].getType());
-                //System.err.println("setting a " + f[i].getType().getName() + " to " + Reflection.show(tgt));
+                System.err.println("setting a " + f[i].getType().getName() + " to " + Reflection.show(tgt));
                 f[i].set(ret, tgt);
             }
             return ret;
@@ -239,7 +239,7 @@ public final class Reflection {
                 if (argTypes[i] == String.class) tgt = Reflection.stringify(tgt);
                 // FUGLY
                 tgt = Reflection.coerce(tgt, argTypes[i]);
-                //System.err.println("setting a " + argTypes[i].getName() + " to " + Reflection.show(tgt));
+                System.err.println("setting a " + argTypes[i].getName() + " to " + Reflection.show(tgt));
                 args[i] = tgt;
             }
             //System.err.println("invoking " + _method + " with " + Reflection.show(args));
@@ -259,7 +259,7 @@ public final class Reflection {
                 if (argTypes[i] == String.class) tgt = Reflection.stringify(tgt);
                 // FUGLY
                 tgt = Reflection.coerce(tgt, argTypes[i]);
-                //System.err.println("setting a " + argTypes[i].getName() + " to " + Reflection.show(tgt));
+                System.err.println("setting a " + argTypes[i].getName() + " to " + Reflection.show(tgt));
                 args[i] = tgt;
             }
             return _ctor.newInstance(args);