David T. Lewis uploaded a new version of 39Deprecated to project The Trunk:
http://source.squeak.org/trunk/39Deprecated-dtl.18.mcz==================== Summary ====================
Name: 39Deprecated-dtl.18
Author: dtl
Time: 29 November 2009, 11:00:18 am
UUID: 690fd4f2-4bb2-4abc-9a86-eb97adbc64a4
Ancestors: 39Deprecated-dtl.17
Restore original #scopeFor:from:envtAndPathIfFound: method (from a Squeak 3.6 image), eliminating deprecation marker and removing it from package "39Deprecated".
=============== Diff against 39Deprecated-dtl.17 ===============
Item was removed:
- ----- Method: SystemDictionary>>scopeFor:from:envtAndPathIfFound: (in category '*39Deprecated') -----
- scopeFor: varName from: lower envtAndPathIfFound: envtAndPathBlock
- "Null compatibility with partitioning into environments."
-
- self deprecated: 'deprecated'.
-
- (self includesKey: varName)
- ifTrue: [^ envtAndPathBlock value: self value: String new]
- ifFalse: [^ nil]!