Lookup.st
changeset 18373 beb5f8695d8b
parent 18365 806d5402c9c0
child 18374 122c2dc2d0a5
child 18706 59b1a62da74e
--- a/Lookup.st	Mon May 18 17:24:22 2015 +0200
+++ b/Lookup.st	Mon May 18 17:34:46 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
 	      All Rights Reserved
@@ -25,6 +27,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#Lookup
 	instanceVariableNames:''
 	classVariableNames:''
@@ -65,7 +69,10 @@
 !Lookup class methodsFor:'initialization'!
 
 initialize
-    self lookupObject: Lookup builtin
+    "/ do we really need this?
+    "/ i.e. my own messages can be resolved by the VM - can't they ?
+
+    "/ self lookupObject: Lookup builtin
 
     "Created: / 26-04-2010 / 21:15:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
@@ -177,11 +184,11 @@
 !Lookup class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Lookup.st,v 1.4 2015-05-18 00:39:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Lookup.st,v 1.5 2015-05-18 15:34:46 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: Lookup.st,v 1.4 2015-05-18 00:39:03 cg Exp $'
+    ^ '$Id: Lookup.st,v 1.5 2015-05-18 15:34:46 cg Exp $'
 ! !