Skip to content

Commit

Permalink
lint (#3221)
Browse files Browse the repository at this point in the history
  • Loading branch information
rrousselGit authored Dec 15, 2023
1 parent 91edef5 commit 67d26d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/riverpod/lib/src/result.dart
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class ResultData<State> implements Result<State> {
}

@override
bool operator ==(Object? other) =>
bool operator ==(Object other) =>
other is ResultData<State> &&
other.runtimeType == runtimeType &&
other.state == state;
Expand Down Expand Up @@ -130,7 +130,7 @@ class ResultError<State> implements Result<State> {
}

@override
bool operator ==(Object? other) =>
bool operator ==(Object other) =>
other is ResultError<State> &&
other.runtimeType == runtimeType &&
other.stackTrace == stackTrace &&
Expand Down

0 comments on commit 67d26d2

Please sign in to comment.