Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
robbecker-wf committed Apr 16, 2020
1 parent dc502e2 commit 3d31ecf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/src/common/model/checks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,15 @@ class CheckRunAnnotation {
@override
bool operator ==(dynamic other) {
if (other is CheckRunAnnotation) {
return other.annotationLevel == this.annotationLevel &&
other.path == this.path &&
other.startColumn == this.startColumn &&
other.endColumn == this.endColumn &&
other.startLine == this.startLine &&
other.endLine == this.endLine &&
other.title == this.title &&
other.message == this.message &&
other.rawDetails == this.rawDetails;
return other.annotationLevel == annotationLevel &&
other.path == path &&
other.startColumn == startColumn &&
other.endColumn == endColumn &&
other.startLine == startLine &&
other.endLine == endLine &&
other.title == title &&
other.message == message &&
other.rawDetails == rawDetails;
}
return false;
}
Expand Down

0 comments on commit 3d31ecf

Please sign in to comment.