Remove unnecessary lifetimes

This commit is contained in:
julianbraha 2024-08-30 13:58:49 +01:00 committed by Victoria Brekenfeld
parent 09b34bb40e
commit 52ad30c264
11 changed files with 30 additions and 42 deletions

View file

@ -953,7 +953,7 @@ impl FloatingLayout {
}
}
pub fn toggle_stacking_focused<'a>(
pub fn toggle_stacking_focused(
&mut self,
seat: &Seat<State>,
focus_stack: FocusStackMut,
@ -966,7 +966,7 @@ impl FloatingLayout {
self.toggle_stacking(&elem, focus_stack)
}
pub fn move_element<'a>(
pub fn move_element(
&mut self,
direction: Direction,
seat: &Seat<State>,
@ -1133,7 +1133,7 @@ impl FloatingLayout {
}
}
pub fn move_current_element<'a>(
pub fn move_current_element(
&mut self,
direction: Direction,
seat: &Seat<State>,