Remove unused methods (#1702)

Those protected methods have been removed from the StatementSearchVisitor
This commit is contained in:
Christophe Coevoet 2022-05-25 22:03:24 +02:00 committed by GitHub
parent e69d90320a
commit 46c2c9b1a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,4 @@ class _HasContentVisitor extends StatementSearchVisitor<bool> {
const _HasContentVisitor();
bool visitContentRule(_) => true;
bool? visitArgumentInvocation(_) => null;
bool? visitSupportsCondition(_) => null;
bool? visitInterpolation(_) => null;
}