diff options
author | ivan770 <[email protected]> | 2021-03-19 15:01:39 +0000 |
---|---|---|
committer | ivan770 <[email protected]> | 2021-03-19 15:01:39 +0000 |
commit | d331155f8db056a0f7a406498c96f759f620d2c7 (patch) | |
tree | 8ac82c9e4e149256d679b3a35161345275f2f3a5 /crates | |
parent | 2794cc7b00658e96e2fab405f1bb5aaf1d18c2ef (diff) |
Remove needless lifetime
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ide/src/move_item.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/move_item.rs b/crates/ide/src/move_item.rs index 806fd58da..48690b073 100644 --- a/crates/ide/src/move_item.rs +++ b/crates/ide/src/move_item.rs | |||
@@ -95,7 +95,7 @@ fn move_in_direction( | |||
95 | } | 95 | } |
96 | } | 96 | } |
97 | 97 | ||
98 | fn swap_sibling_in_list<'i, A: AstNode + Clone, I: Iterator<Item = A>>( | 98 | fn swap_sibling_in_list<A: AstNode + Clone, I: Iterator<Item = A>>( |
99 | list: I, | 99 | list: I, |
100 | range: TextRange, | 100 | range: TextRange, |
101 | direction: Direction, | 101 | direction: Direction, |