diff -r 5bd2ece3d750 -r 24ee164045bd AbstractOperatingSystem.st --- a/AbstractOperatingSystem.st Thu May 17 14:13:08 2001 +0200 +++ b/AbstractOperatingSystem.st Thu May 17 16:04:08 2001 +0200 @@ -1409,6 +1409,8 @@ If not successfull, aBlock is called with an OsProcessStatus (containing the exit status) as argument." + + self obsoleteMethodWarning:'use executeCommand:inDirectory:onError:'. ^ self @@ -2014,6 +2016,8 @@ !AbstractOperatingSystem class methodsFor:'file queries'! baseNameOf:aPath + + self obsoleteMethodWarning:'use asFilename baseName'. ^ aPath asFilename baseName ! @@ -2036,6 +2040,8 @@ ! directoryNameOf:aPath + + self obsoleteMethodWarning:'use asFilename directoryName'. ^ aPath asFilename directoryName ! @@ -4250,6 +4256,6 @@ !AbstractOperatingSystem class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.47 2001-05-08 14:50:44 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.48 2001-05-17 14:04:08 stefan Exp $' ! ! AbstractOperatingSystem initialize!