Browse Source

Fix for recurring check in gdscript_cach.cpp

Voylin 3 years ago
parent
commit
e5814c3f81
1 changed files with 1 additions and 3 deletions
  1. 1 3
      modules/gdscript/gdscript_cache.cpp

+ 1 - 3
modules/gdscript/gdscript_cache.cpp

@@ -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);