You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Removed unnecessary assignments
This commit is contained in:
@@ -1465,10 +1465,9 @@ void FileSystemDock::_files_list_rmb_select(int p_item, const Vector2 &p_pos) {
|
||||
return;
|
||||
}
|
||||
|
||||
EditorFileSystemDirectory *efsd = NULL;
|
||||
int pos;
|
||||
|
||||
efsd = EditorFileSystem::get_singleton()->find_file(path, &pos);
|
||||
EditorFileSystemDirectory *efsd = EditorFileSystem::get_singleton()->find_file(path, &pos);
|
||||
|
||||
if (efsd) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user