cob: Fix some clippy warnings
This commit is contained in:
parent
ae981ded6e
commit
47799cbab2
|
|
@ -333,13 +333,13 @@ impl Issue {
|
|||
|
||||
impl Issue {
|
||||
/// Apply a single action to the issue.
|
||||
fn action<'a, R: ReadRepository>(
|
||||
fn action<R: ReadRepository>(
|
||||
&mut self,
|
||||
action: Action,
|
||||
entry: EntryId,
|
||||
author: ActorId,
|
||||
timestamp: Timestamp,
|
||||
_concurrent: &[&'a cob::Entry],
|
||||
_concurrent: &[&cob::Entry],
|
||||
_doc: &Doc<Verified>,
|
||||
_repo: &R,
|
||||
) -> Result<(), Error> {
|
||||
|
|
|
|||
|
|
@ -696,13 +696,13 @@ impl Patch {
|
|||
|
||||
impl Patch {
|
||||
/// Apply a single action to the patch.
|
||||
fn action<'a, R: ReadRepository>(
|
||||
fn action<R: ReadRepository>(
|
||||
&mut self,
|
||||
action: Action,
|
||||
entry: EntryId,
|
||||
author: ActorId,
|
||||
timestamp: Timestamp,
|
||||
_concurrent: &[&'a cob::Entry],
|
||||
_concurrent: &[&cob::Entry],
|
||||
identity: &Doc<Verified>,
|
||||
repo: &R,
|
||||
) -> Result<(), Error> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue