| 26 | } |
| 27 | |
| 28 | LoadLocalisation::~LoadLocalisation() { |
| 29 | ERR_FAIL_COND(singleton != this); |
| 30 | singleton = nullptr; |
| 31 | } |
| 32 | |
| 33 | Error LoadLocalisation::_load_file_into_translation(String const& file_path, Ref<Translation> translation) { |
| 34 | const Ref<FileAccess> file = FileAccess::open(file_path, FileAccess::ModeFlags::READ); |
nothing calls this directly
no outgoing calls
no test coverage detected