summaryrefslogtreecommitdiff
path: root/core/os/file_access.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-08-10 13:30:00 -0300
committerGitHub <noreply@github.com>2018-08-10 13:30:00 -0300
commit767fb2fa0ba14ee6afb4eeeaad12e5dee944547b (patch)
tree3987cd371656fd23d039c3f12905bd713e6ee8b8 /core/os/file_access.h
parent275e0d5ee4e80d9d3cd124ffa29a691b9aed3e70 (diff)
parentea3d997f9d4243c21a9f7a65d0320f31c4d57f54 (diff)
Merge pull request #20889 from godotengine/revert-18914-master
Revert "added get_creation_time function for gdscript"
Diffstat (limited to 'core/os/file_access.h')
-rw-r--r--core/os/file_access.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/os/file_access.h b/core/os/file_access.h
index 2b9477a79c..c4635fdfbb 100644
--- a/core/os/file_access.h
+++ b/core/os/file_access.h
@@ -59,7 +59,6 @@ protected:
String fix_path(const String &p_path) const;
virtual Error _open(const String &p_path, int p_mode_flags) = 0; ///< open a file
virtual uint64_t _get_modified_time(const String &p_file) = 0;
- virtual uint64_t _get_creation_time(const String &p_file) = 0; // NEW FUNCTION
static FileCloseFailNotify close_fail_notify;
@@ -154,7 +153,6 @@ public:
static CreateFunc get_create_func(AccessType p_access);
static bool exists(const String &p_name); ///< return true if a file exists
static uint64_t get_modified_time(const String &p_file);
- static uint64_t get_creation_time(const String &p_file); // NEW FUNCTION
static void set_backup_save(bool p_enable) { backup_save = p_enable; };
static bool is_backup_save_enabled() { return backup_save; };