[Pharo-project] a few obsolete classes?
I was working with the Pharo0.1Core-10204.image and noticed that SystemNavigation default obsoleteClasses toss up {AnObsoleteTranslatedMethod. AnObsoleteScriptEditorMorph. AnObsoleteCurrentProjectRefactoring. AnObsoleteSmallLandColorTheme. AnObsoleteBlueSmallLandColorTheme} ScriptEditorMorph has a number of method usages. I note ColorTheme class variable Current doesn't see to be set/reset/ etc anywhere? CurrentProjectRefactoring seems to be a cmd - key reference. TranslatedMethod how intresting, someone can figure that out... -- = = = ======================================================================== John M. McIntosh <johnmci@smalltalkconsulting.com> Corporate Smalltalk Consulting Ltd. http://www.smalltalkconsulting.com = = = ========================================================================
Thanks john. I have to continue removing etoy. I should get a bit of time his week-end. On Jan 24, 2009, at 1:01 AM, John M McIntosh wrote:
I was working with the Pharo0.1Core-10204.image and noticed that
SystemNavigation default obsoleteClasses
toss up
{AnObsoleteTranslatedMethod. AnObsoleteScriptEditorMorph. AnObsoleteCurrentProjectRefactoring. AnObsoleteSmallLandColorTheme. AnObsoleteBlueSmallLandColorTheme}
ScriptEditorMorph has a number of method usages.
I note ColorTheme class variable Current doesn't see to be set/reset/ etc anywhere?
CurrentProjectRefactoring seems to be a cmd - key reference.
TranslatedMethod how intresting, someone can figure that out...
-- = = = = = ====================================================================== John M. McIntosh <johnmci@smalltalkconsulting.com> Corporate Smalltalk Consulting Ltd. http:// www.smalltalkconsulting.com = = = = = ======================================================================
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
That sits in the special object's array in the array of compact classes. I don' quite see where that array of compact classes is updated. I note rebuilding the special object's array just reuses the array of compact classes it already had. On 24-Jan-09, at 12:33 AM, Stéphane Ducasse wrote:
AnObsoleteTranslatedMethod
-- = = = ======================================================================== John M. McIntosh <johnmci@smalltalkconsulting.com> Corporate Smalltalk Consulting Ltd. http://www.smalltalkconsulting.com = = = ========================================================================
On Jan 26, 2009, at 05:10 , John M McIntosh wrote:
That sits in the special object's array in the array of compact classes. I don' quite see where that array of compact classes is updated.
In Behavior>>#becomeCompact and #becomeUncompact.
I note rebuilding the special object's array just reuses the array of compact classes it already had.
Sending #becomeUncompact to AnObsoleteTranslatedMethod removes it from the compact classes array and finally makes it garbage. Adrian
On 24-Jan-09, at 12:33 AM, Stéphane Ducasse wrote:
AnObsoleteTranslatedMethod
-- = = = = = ====================================================================== John M. McIntosh <johnmci@smalltalkconsulting.com> Corporate Smalltalk Consulting Ltd. http:// www.smalltalkconsulting.com = = = = = ======================================================================
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
participants (3)
-
Adrian Lienhard -
John M McIntosh -
Stéphane Ducasse