NamespaceAwareLookup.st
branchjv
changeset 17788 c4f89c6602a5
parent 17787 c56ba6d58661
child 17791 d3e4d80549a6
--- a/NamespaceAwareLookup.st	Wed Jul 21 19:58:43 2010 +0100
+++ b/NamespaceAwareLookup.st	Thu Jul 22 13:32:34 2010 +0100
@@ -75,11 +75,11 @@
             ifNil:[nil]                
             ifNotNil:[sendingContext method nameSpace].
 
-    " "
+    " 
     Transcript 
             show: 'sel='; show: selector; show: ' ns='; show: sendingNs printString; 
             show: ' method=', sendingContext method printString; cr.
-    " "
+    " 
 
     queue := Queue with: (Array with: sendingNs).
     seen := Set new.
@@ -167,7 +167,7 @@
 !NamespaceAwareLookup class methodsFor:'documentation'!
 
 version_SVN
-    ^ '$Id: NamespaceAwareLookup.st 10552 2010-07-21 18:58:43Z vranyj1 $'
+    ^ '$Id: NamespaceAwareLookup.st 10553 2010-07-22 12:32:34Z vranyj1 $'
 ! !
 
 NamespaceAwareLookup initialize!