# HG changeset patch # User Claus Gittinger # Date 1265374822 -3600 # Node ID 557c563c2d330a84107f0732e8c14059e9822df3 # Parent 9ceabe94c8e143f5041998078d33c4215a8137ed changed: #autoload less subclassInfoCache flushing diff -r 9ceabe94c8e1 -r 557c563c2d33 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!