diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-04-12 14:16:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 14:16:52 +0200 |
commit | c28d7813445a897a371105ddb8f42ee68fafea0c (patch) | |
tree | 29e4202a2b47505fe1dcfb0b6507cbb7f5d421e8 /core/io/file_access.h | |
parent | 603b1315a711f427a581445c9680116bee0ef755 (diff) | |
parent | d2ebac3a302f41223ab86f5bc2862dd3a050a010 (diff) | |
download | redot-engine-c28d7813445a897a371105ddb8f42ee68fafea0c.tar.gz |
Merge pull request #60169 from bruvzg/remove_fa_close
Diffstat (limited to 'core/io/file_access.h')
-rw-r--r-- | core/io/file_access.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/io/file_access.h b/core/io/file_access.h index 60abfe3c5e..e2c11142d7 100644 --- a/core/io/file_access.h +++ b/core/io/file_access.h @@ -88,7 +88,6 @@ public: WRITE_READ = 7, }; - virtual void close() = 0; ///< close a file virtual bool is_open() const = 0; ///< true when file is open virtual String get_path() const { return ""; } /// returns the path for the current open file |