Pārlūkot izejas kodu

Remove an assignment to self

This line does a = a and has a FIXME line. It seems that reduz can't
think of a reason for it either, so here it goes.
Hein-Pieter van Braam 8 gadi atpakaļ
vecāks
revīzija
3894f20d98
1 mainītis faili ar 0 papildinājumiem un 1 dzēšanām
  1. 0 1
      editor/import/resource_importer_scene.cpp

+ 0 - 1
editor/import/resource_importer_scene.cpp

@@ -1287,7 +1287,6 @@ Error ResourceImporterScene::import(const String &p_source_file, const String &p
 	Ref<EditorScenePostImport> post_import_script;
 
 	if (post_import_script_path != "") {
-		post_import_script_path = post_import_script_path; // FIXME: is there a good reason for this?
 		Ref<Script> scr = ResourceLoader::load(post_import_script_path);
 		if (!scr.is_valid()) {
 			EditorNode::add_io_error(TTR("Couldn't load post-import script:") + " " + post_import_script_path);