Squeak 4.6: 39Deprecated-ar.19.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Squeak 4.6: 39Deprecated-ar.19.mcz

commits-2
Chris Muller uploaded a new version of 39Deprecated to project Squeak 4.6:
http://source.squeak.org/squeak46/39Deprecated-ar.19.mcz

==================== Summary ====================

Name: 39Deprecated-ar.19
Author: ar
Time: 5 March 2010, 9:44:11.754 pm
UUID: 8da20c38-7d28-3241-9f29-da261d6f9bfe
Ancestors: 39Deprecated-dtl.18

Clean up after Smalltalk/SystemDictionary refactoring.

==================== Snapshot ====================

----- Method: ContextPart>>methodSelector (in category '*39Deprecated') -----
methodSelector
        "Answer the selector of the method that created the receiver."
        self deprecated: 'use #selector'.

        ^self selector.
!

----- Method: SharedQueue2>>flush (in category '*39Deprecated') -----
flush
        self deprecated: 'use removeAll'.
        ^self removeAll!

----- Method: SharedQueue2>>flushAllSuchThat: (in category '*39Deprecated') -----
flushAllSuchThat: aBlock
        self deprecated: 'use removeAllSuchThat:'.

        ^self removeAllSuchThat: aBlock!