summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Haas <Hinsbart@users.noreply.github.com>2017-08-23 23:57:16 +0200
committerGitHub <noreply@github.com>2017-08-23 23:57:16 +0200
commit21d53f29f392f4a33095de75c478da345a362555 (patch)
treed406e2d6b9c61509b151640c26c156c4e558c8dd
parentb4ad899ef64df6e341a4cbe52a15109cd3d6b2eb (diff)
parent3894f20d9804a9be0ef496f23656b6594710358e (diff)
Merge pull request #10597 from hpvb/remove-useless-line
Remove an assignment to self
-rw-r--r--editor/import/resource_importer_scene.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/import/resource_importer_scene.cpp b/editor/import/resource_importer_scene.cpp
index 798f57f8c3..b6f17b7121 100644
--- a/editor/import/resource_importer_scene.cpp
+++ b/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);