From 9850149af20e00940c0c74d6efcf4b5d92704fce Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 24 May 2022 11:06:04 +0200 Subject: [PATCH] Remove unused methods Those protected methods have been removed from the StatementSearchVisitor --- lib/src/ast/sass/statement/mixin_rule.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/src/ast/sass/statement/mixin_rule.dart b/lib/src/ast/sass/statement/mixin_rule.dart index f793ec6c7..bd323f196 100644 --- a/lib/src/ast/sass/statement/mixin_rule.dart +++ b/lib/src/ast/sass/statement/mixin_rule.dart @@ -54,7 +54,4 @@ class _HasContentVisitor extends StatementSearchVisitor { const _HasContentVisitor(); bool visitContentRule(_) => true; - bool? visitArgumentInvocation(_) => null; - bool? visitSupportsCondition(_) => null; - bool? visitInterpolation(_) => null; }