fix(lint): simplify unnecessary return statements (#1080)

This commit is contained in:
Ken Matsui 2022-02-24 04:37:01 +09:00 committed by GitHub
parent 28c2046890
commit f1f5ac01af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -281,7 +281,7 @@ impl FloatingPanes {
self.set_force_render(); self.set_force_render();
return true; return true;
} }
return false; false
} }
pub fn resize_active_pane_up( pub fn resize_active_pane_up(
&mut self, &mut self,
@ -305,7 +305,7 @@ impl FloatingPanes {
self.set_force_render(); self.set_force_render();
return true; return true;
} }
return false; false
} }
pub fn resize_active_pane_increase( pub fn resize_active_pane_increase(
&mut self, &mut self,
@ -329,7 +329,7 @@ impl FloatingPanes {
self.set_force_render(); self.set_force_render();
return true; return true;
} }
return false; false
} }
pub fn resize_active_pane_decrease( pub fn resize_active_pane_decrease(
&mut self, &mut self,
@ -353,7 +353,7 @@ impl FloatingPanes {
self.set_force_render(); self.set_force_render();
return true; return true;
} }
return false; false
} }
fn set_pane_active_at(&mut self, pane_id: PaneId) { fn set_pane_active_at(&mut self, pane_id: PaneId) {
if let Some(pane) = self.panes.get_mut(&pane_id) { if let Some(pane) = self.panes.get_mut(&pane_id) {
@ -816,7 +816,7 @@ impl FloatingPanes {
return true; return true;
} }
}; };
return false; false
} }
pub fn stop_moving_pane_with_mouse(&mut self, position: Position) { pub fn stop_moving_pane_with_mouse(&mut self, position: Position) {
if self.pane_being_moved_with_mouse.is_some() { if self.pane_being_moved_with_mouse.is_some() {