Skip to content

Commit cf70a2e

Browse files
committed
Rm unnecessary lifetime annotation in Repository::commit_as_inner
Signed-off-by: Jiahao XU <[email protected]>
1 parent b19c140 commit cf70a2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gix/src/repository/object.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ impl crate::Repository {
219219
)
220220
}
221221

222-
fn commit_as_inner<'a, 'c>(
222+
fn commit_as_inner(
223223
&self,
224-
committer: gix_actor::SignatureRef<'c>,
225-
author: gix_actor::SignatureRef<'a>,
224+
committer: gix_actor::SignatureRef<'_>,
225+
author: gix_actor::SignatureRef<'_>,
226226
reference: FullName,
227227
message: &str,
228228
tree: ObjectId,

0 commit comments

Comments
 (0)