Skip to content

Commit

Permalink
chore(core): remove redundant ref
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Dec 16, 2023
1 parent 89d7208 commit 2c8c8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz-core/src/handler/either.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ where
type Output = O;

async fn call(&self, i: I) -> Self::Output {
match &self {
match self {
Self::Left(l) => l.call(i),
Self::Right(r) => r.call(i),
}
Expand Down

0 comments on commit 2c8c8ff

Please sign in to comment.