aboutsummaryrefslogtreecommitdiffstats
path: root/unicode/src/base/UFilesystem.pas
diff options
context:
space:
mode:
Diffstat (limited to 'unicode/src/base/UFilesystem.pas')
-rw-r--r--unicode/src/base/UFilesystem.pas13
1 files changed, 0 insertions, 13 deletions
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
@@ -138,12 +138,6 @@ type
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.
*}
function IsCaseSensitive(): boolean;
@@ -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);