Merge pull request #10340 from Rubonnek/remove-unnecessary-assignments

Removed unnecessary assignments
This commit is contained in:
Rémi Verschelde 2017-08-22 00:58:12 +02:00 committed by GitHub
commit df590fc2d3
37 changed files with 65 additions and 128 deletions

View file

@ -258,7 +258,6 @@ void FindReplaceBar::_get_search_from(int &r_line, int &r_col) {
int selection_from_col = text_edit->get_selection_from_column();
if (r_col >= selection_from_col && r_col <= text_edit->get_selection_to_column()) {
r_col = selection_line;
r_col = selection_from_col;
}
}