Fix for recurring check in gdscript_cach.cpp
This commit is contained in:
parent
b52305351d
commit
e5814c3f81
1 changed files with 1 additions and 3 deletions
|
@ -146,9 +146,7 @@ String GDScriptCache::get_source_code(const String &p_path) {
|
|||
Vector<uint8_t> source_file;
|
||||
Error err;
|
||||
Ref<FileAccess> f = FileAccess::open(p_path, FileAccess::READ, &err);
|
||||
if (err) {
|
||||
ERR_FAIL_COND_V(err, "");
|
||||
}
|
||||
ERR_FAIL_COND_V(err, "");
|
||||
|
||||
uint64_t len = f->get_length();
|
||||
source_file.resize(len + 1);
|
||||
|
|
Loading…
Reference in a new issue