Mariano 

I was wondering (since we already removed a lot of the behavior related to 
inMemory) if we could not remove is in 

traitNames
        "Answer a SortedCollection of all traits (not including class-traits) 
names."
        | names |
        names := OrderedCollection new.
        self do: 
                [:cl | (cl isInMemory
                        and: [(cl isKindOf: Trait)
                        and: [(cl name beginsWith: 'AnObsolete') not]])
                                ifTrue: [names add: cl name]].
        ^ names

and friend

Stef
_______________________________________________
Pharo-project mailing list
Pharo-project@lists.gforge.inria.fr
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to