'From Squeak3.7beta of ''1 April 2004'' [latest update: #5972] on 16 July 2004 at 4:46:54 pm'! "Change Set: FixDeprecatedExpl-md Date: 16 July 2004 Author: Marcus Denker Small fix for s couple of methods that use deprecatedExplanation: which is deprecated. This cs just patches the method to use #deprecated: instead "! !CleanKernelTest methodsFor: 'utility' stamp: 'md 7/16/2004 16:46'! isSelector: aSymbol deprecatedInClass: aClassSymbol | cls | cls _ Smalltalk at: aClassSymbol ifAbsent: [^ false]. ^ (cls >> aSymbol) literals includesAllOf: #(deprecated:)! ! !TimeStamp class methodsFor: 'deprecated' stamp: 'md 7/16/2004 16:46'! midnightOn: aDate "Answer a new instance that represents aDate at midnight." ^ self deprecated: 'Deprecated'; date: aDate time: Time midnight! ! !TimeStamp class methodsFor: 'deprecated' stamp: 'md 7/16/2004 16:46'! noonOn: aDate "Answer a new instance that represents aDate at noon." ^ self deprecated: 'Deprecated'; date: aDate time: Time noon! !