File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -229,15 +229,15 @@ class CheckRunAnnotation {
229
229
@override
230
230
bool operator == (dynamic other) {
231
231
if (other is CheckRunAnnotation ) {
232
- return other.annotationLevel == this . annotationLevel &&
233
- other.path == this . path &&
234
- other.startColumn == this . startColumn &&
235
- other.endColumn == this . endColumn &&
236
- other.startLine == this . startLine &&
237
- other.endLine == this . endLine &&
238
- other.title == this . title &&
239
- other.message == this . message &&
240
- other.rawDetails == this . rawDetails;
232
+ return other.annotationLevel == annotationLevel &&
233
+ other.path == path &&
234
+ other.startColumn == startColumn &&
235
+ other.endColumn == endColumn &&
236
+ other.startLine == startLine &&
237
+ other.endLine == endLine &&
238
+ other.title == title &&
239
+ other.message == message &&
240
+ other.rawDetails == rawDetails;
241
241
}
242
242
return false ;
243
243
}
You can’t perform that action at this time.
0 commit comments