Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit ed7b5f6

Browse files
committed
fmt
1 parent a954c51 commit ed7b5f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/rules/avoid_equals_and_hash_code_on_mutable_classes.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class _Visitor extends SimpleAstVisitor<void> {
108108

109109
ClassElement? _getClassForMethod(MethodDeclaration node) =>
110110
// todo (pq): should this be ClassOrMixinDeclaration ?
111-
node.thisOrAncestorOfType<ClassDeclaration>()?.declaredElement;
111+
node.thisOrAncestorOfType<ClassDeclaration>()?.declaredElement;
112112

113113
bool _hasImmutableAnnotation(ClassElement clazz) {
114114
var inheritedAndSelfElements = <ClassElement>[

0 commit comments

Comments
 (0)