#REFACTORING by stefan cvs_MAIN
authorStefan Vogel <sv@exept.de>
Fri, 14 Oct 2016 13:46:22 +0200
branchcvs_MAIN
changeset 3630 c04573558cc2
parent 3629 690be4699c67
child 3631 6fb8033d4630
#REFACTORING by stefan class: JavaLookup changed: #lookupMethodForSelector:directedTo: (send #overwrites: instead of #overrides:) be compatible with Method
JavaLookup.st
--- 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$'
 ! !