changed: #autoload
authorClaus Gittinger <cg@exept.de>
Fri, 05 Feb 2010 14:00:22 +0100
changeset 12702 557c563c2d33
parent 12701 9ceabe94c8e1
child 12703 b87cc4993193
changed: #autoload less subclassInfoCache flushing
Autoload.st
--- a/Autoload.st	Fri Feb 05 13:59:41 2010 +0100
+++ b/Autoload.st	Fri Feb 05 14:00:22 2010 +0100
@@ -9,8 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-'From Smalltalk/X, Version:5.4.6 on 14-10-2009 at 10:26:50'                     !
-
 "{ Package: 'stx:libbasic' }"
 
 nil subclass:#Autoload
@@ -482,7 +480,7 @@
         self becomeSameAs:newClass.
 
         ObjectMemory flushCaches.
-        Class flushSubclassInfo.
+        Class flushSubclassInfoFor:self.
     ].
 
     "the rehash here is pure superstition"
@@ -763,11 +761,11 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.155 2009-10-14 10:50:02 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.156 2010-02-05 13:00:22 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.155 2009-10-14 10:50:02 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.156 2010-02-05 13:00:22 cg Exp $'
 ! !
 
 Autoload initialize!