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.
This commit is contained in:
Hein-Pieter van Braam 2017-08-23 23:51:37 +02:00
parent b4ad899ef6
commit 3894f20d98

View File

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