lint: unnecessary else statement

This commit is contained in:
Kurtis Rader
2016-10-28 17:42:50 -07:00
parent 2d46969d3e
commit 4a2aed1f8e
4 changed files with 11 additions and 11 deletions

View File

@@ -313,7 +313,7 @@ bool autoload_t::locate_file_and_maybe_load_it(const wcstring &cmd, bool really_
if (really_load) {
return reloaded;
} else {
return found_file || has_script_source;
}
return found_file || has_script_source;
}