Remove debugging printf from perform:with: methods jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Wed, 08 Sep 2010 14:09:42 +0100
branchjv
changeset 17799 4c77341d310d
parent 17798 3ad99b128366
child 17800 142da80d8c82
Remove debugging printf from perform:with: methods
Object.st
stx_libbasic.st
--- a/Object.st	Sun Aug 29 08:22:20 2010 +0100
+++ b/Object.st	Wed Sep 08 14:09:42 2010 +0100
@@ -5484,7 +5484,6 @@
                 }
                 pIlc->ilc_func = __SEND3ADDR__;
                 if (pIlc->ilc_poly) {
-printf("Object >> #perform:with:3 flushing PIC\n");
                     __flushPolyCache(pIlc->ilc_poly);
                     pIlc->ilc_poly = 0;
                 }
@@ -5529,7 +5528,6 @@
                 }
                 pIlc->ilc_func = __SEND4ADDR__;
                 if (pIlc->ilc_poly) {
-printf("Object >> #perform:with:4 flushing PIC\n");
                     __flushPolyCache(pIlc->ilc_poly);
                     pIlc->ilc_poly = 0;
                 }
@@ -5576,7 +5574,6 @@
                 }
                 pIlc->ilc_func = __SEND5ADDR__;
                 if (pIlc->ilc_poly) {
-printf("Object >> #perform:with:5 flushing PIC\n");
                     __flushPolyCache(pIlc->ilc_poly);
                     pIlc->ilc_poly = 0;
                 }
@@ -5624,7 +5621,6 @@
                 }
                 pIlc->ilc_func = __SEND6ADDR__;
                 if (pIlc->ilc_poly) {
-printf("Object >> #perform:with:6 flushing PIC\n");
                     __flushPolyCache(pIlc->ilc_poly);
                     pIlc->ilc_poly = 0;
                 }
@@ -9333,7 +9329,7 @@
 !Object class methodsFor:'documentation'!
 
 version
-    ^ '$Id: Object.st 10570 2010-08-26 10:12:57Z vranyj1 $'
+    ^ '$Id: Object.st 10575 2010-09-08 13:09:42Z vranyj1 $'
 !
 
 version_CVS
@@ -9341,7 +9337,7 @@
 !
 
 version_SVN
-    ^ '$Id: Object.st 10570 2010-08-26 10:12:57Z vranyj1 $'
+    ^ '$Id: Object.st 10575 2010-09-08 13:09:42Z vranyj1 $'
 ! !
 
 Object initialize!
--- a/stx_libbasic.st	Sun Aug 29 08:22:20 2010 +0100
+++ b/stx_libbasic.st	Wed Sep 08 14:09:42 2010 +0100
@@ -535,13 +535,13 @@
     "Return a SVN revision number of myself.
      This number is updated after a commit"
 
-    ^ "$SVN-Revision:"'10569M'"$"
+    ^ "$SVN-Revision:"'10574M'"$"
 ! !
 
 !stx_libbasic class methodsFor:'documentation'!
 
 version
-    ^ '$Id: stx_libbasic.st 10570 2010-08-26 10:12:57Z vranyj1 $'
+    ^ '$Id: stx_libbasic.st 10575 2010-09-08 13:09:42Z vranyj1 $'
 !
 
 version_CVS
@@ -549,6 +549,6 @@
 !
 
 version_SVN
-    ^ '$Id: stx_libbasic.st 10570 2010-08-26 10:12:57Z vranyj1 $'
+    ^ '$Id: stx_libbasic.st 10575 2010-09-08 13:09:42Z vranyj1 $'
 ! !