More tidyups ... rem ove some previously deprecated methods and improve docs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21861 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-10-23 14:53:03 +00:00
parent 0dd713a0dc
commit c0f48a2720
5 changed files with 24 additions and 59 deletions

View file

@ -3479,35 +3479,6 @@ static NSFileManager *fm = nil;
return [fm fileSystemRepresentationWithPath: self];
}
/**
* Converts this string, which is assumed to be a path in Unix notation ('/'
* is file separator, '.' is extension separator) to a string path expressed
* in the convention for the host operating system.
*/
- (NSString*) localFromOpenStepPath
{
GSOnceMLog(@"deprecated");
if (fm == nil)
{
fm = RETAIN([NSFileManager defaultManager]);
}
return [fm localFromOpenStepPath: self];
}
- (NSString*) openStepPathFromLocal
{
GSOnceMLog(@"deprecated");
if (fm == nil)
{
fm = RETAIN([NSFileManager defaultManager]);
}
return [fm openStepPathFromLocal: self];
}
- (BOOL) getFileSystemRepresentation: (char*)buffer
maxLength: (unsigned int)size
{