'From Squeakland 3.8.5976 of 18 August 2004 [latest update: #242] on 19 August 2004 at 1:57:49 pm'! "Change Set: MoreDepFixes-nk Date: 19 August 2004 Author: Ned Konz A few methods that were missed when I sent the depFixes change set to Michael, notably: - CharacterSet class new - SystemDictionary methods that were moved to other classes (for backwards compatibility; don't know how important this is in the Squeakland image) "! !CharacterSet class methodsFor: 'instance creation' stamp: 'nk 8/3/2004 06:54'! empty "return an empty set of characters" ^self new! ! !SystemDictionary methodsFor: 'toDeprecate' stamp: 'nk 8/3/2004 06:51'! aboutThisSystem self deprecated: 'Use SmalltalkImage current aboutThisSystem'. ^SmalltalkImage current aboutThisSystem! ! !SystemDictionary methodsFor: 'toDeprecate' stamp: 'nk 8/3/2004 06:52'! datedVersion self deprecated: 'Use SmalltalkImage current datedVersion'. ^SmalltalkImage current datedVersion! ! !SystemDictionary methodsFor: 'toDeprecate' stamp: 'nk 8/3/2004 06:52'! lastUpdateString self deprecated: 'Use SmalltalkImage current lastUpdateString'. ^SmalltalkImage current lastUpdateString! ! !SystemDictionary methodsFor: 'toDeprecate' stamp: 'nk 8/3/2004 06:52'! systemInformationString self deprecated: 'Use SmalltalkImage current systemInformationString'. ^SmalltalkImage current systemInformationString! ! !SystemDictionary methodsFor: 'toDeprecate' stamp: 'nk 8/3/2004 06:52'! timeStamp: aString self deprecated: 'Use SmalltalkImage current timeStamp: aString'. ^SmalltalkImage current timeStamp: aString! ! TestResult class removeSelector: #new!