From 3d31ecfe18c53ef1e486c6ea0306e89c56fdc486 Mon Sep 17 00:00:00 2001 From: Rob Becker Date: Wed, 15 Apr 2020 20:50:06 -0600 Subject: [PATCH] fix lints --- lib/src/common/model/checks.dart | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/src/common/model/checks.dart b/lib/src/common/model/checks.dart index 39b18231..969c9287 100644 --- a/lib/src/common/model/checks.dart +++ b/lib/src/common/model/checks.dart @@ -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; }