Author: mkestner
Date: 2005-03-24 11:22:49 -0500 (Thu, 24 Mar 2005)
New Revision: 42222

Modified:
   trunk/gtk-sharp/glib/ManagedValue.cs
Log:
remove some c.wls

Modified: trunk/gtk-sharp/glib/ManagedValue.cs
===================================================================
--- trunk/gtk-sharp/glib/ManagedValue.cs        2005-03-24 16:07:36 UTC (rev 
42221)
+++ trunk/gtk-sharp/glib/ManagedValue.cs        2005-03-24 16:22:49 UTC (rev 
42222)
@@ -56,27 +56,23 @@
                
                static IntPtr Copy (IntPtr ptr)
                {
-                       Console.WriteLine ("Copying ManagedGValue: " + ptr);
                        GCHandle gch = (GCHandle) ptr;
                        return (IntPtr) GCHandle.Alloc (gch.Target);
                }
 
                static void Free (IntPtr ptr)
                {
-                       Console.WriteLine ("Freeing ManagedGValue: " + ptr);
                        GCHandle gch = (GCHandle) ptr;
                        gch.Free ();
                }
 
                public static IntPtr WrapObject (object obj)
                {
-                       Console.WriteLine ("Wrapping Object in ManagedGValue: " 
+ obj);
                        return (IntPtr) GCHandle.Alloc (obj);
                }
 
                public static object ObjectForWrapper (IntPtr ptr)
                {
-                       Console.WriteLine ("Getting object of ManagedGValue: " 
+ ptr);
                        return ((GCHandle)ptr).Target;
                }
        }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to