From c8eea1987096ddee1da4f153ae8f70c86d35451d Mon Sep 17 00:00:00 2001 From: tobigun Date: Thu, 23 Jul 2009 19:01:43 +0000 Subject: - IFilesystem.CreateFileStream() removed git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1883 b956fd51-792f-4845-bead-9b4dfca2ff2c --- unicode/src/base/UFilesystem.pas | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'unicode') diff --git a/unicode/src/base/UFilesystem.pas b/unicode/src/base/UFilesystem.pas index 1cfb6837..5f7e8c34 100644 --- a/unicode/src/base/UFilesystem.pas +++ b/unicode/src/base/UFilesystem.pas @@ -137,12 +137,6 @@ type function GetCurrentDir: IPath; function SetCurrentDir(const Dir: IPath): Boolean; - {** - * Opens a file stream for FileName with Mode. Close the stream after usage - * with THandleStream.Free(). - *} - function CreateFileStream(const FileName: IPath; Mode: Word): THandleStream; - {** * Returns true if the filesystem is case-sensitive. *} @@ -195,8 +189,6 @@ type function GetCurrentDir: IPath; function SetCurrentDir(const Dir: IPath): Boolean; - function CreateFileStream(const FileName: IPath; Mode: Word): THandleStream; - function IsCaseSensitive(): boolean; end; @@ -221,11 +213,6 @@ begin Result := FileSystem_Singleton; end; -function TFileSystemImpl.CreateFileStream(const FileName: IPath; Mode: Word): THandleStream; -begin - Result := TBinaryFileStream.Create(FileName, Mode); -end; - function TFileSystemImpl.FileFind(const FilePattern: IPath; Attr: Integer): IFileIterator; begin Result := TFileIterator.Create(FilePattern, Attr); -- cgit v1.2.3