JavaLookup.st
branchcvs_MAIN
changeset 3630 c04573558cc2
parent 3412 df11bb428463
child 3954 442e855aa6a7
--- a/JavaLookup.st	Fri Oct 14 13:46:05 2016 +0200
+++ b/JavaLookup.st	Fri Oct 14 13:46:22 2016 +0200
@@ -26,6 +26,8 @@
 "
 "{ Package: 'stx:libjava' }"
 
+"{ NameSpace: Smalltalk }"
+
 Lookup subclass:#JavaLookup
 	instanceVariableNames:'s2j j2s'
 	classVariableNames:'Instance InvokeRSelectors'
@@ -179,7 +181,7 @@
 
     superMethod := super lookupMethodForSelector: selector directedTo: method mclass superclass.
     [ superMethod notNil ] whileTrue:[
-        (method overrides: superMethod) ifFalse:[
+        (method overwrites: superMethod) ifFalse:[
             method := superMethod
         ].
         superMethod := super lookupMethodForSelector: selector directedTo: superMethod mclass superclass.
@@ -1099,7 +1101,7 @@
 !JavaLookup class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libjava/JavaLookup.st,v 1.8 2015-03-20 12:08:00 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_HG
@@ -1108,7 +1110,7 @@
 !
 
 version_SVN
-    ^ 'Id'
+    ^ '$Id$'
 ! !