Unverified Commit c9d5b129 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Remove obsolete ignore: (#27199)

parent 9499cb10
......@@ -302,8 +302,7 @@ mixin RendererBinding on BindingBase, ServicesBinding, SchedulerBinding, Semanti
void hitTest(HitTestResult result, Offset position) {
assert(renderView != null);
renderView.hitTest(result, position: position);
// This super call is safe since it will be bound to a mixed-in declaration.
super.hitTest(result, position); // ignore: abstract_super_member_reference
super.hitTest(result, position);
}
Future<void> _forceRepaint() {
......
......@@ -410,7 +410,6 @@ class PaintingContext extends ClipContext {
/// * `painter` is a callback that will paint with the `clipRRect` applied. This
/// function calls the `painter` synchronously.
/// * `clipBehavior` controls how the path is clipped.
// ignore: deprecated_member_use
void pushClipRRect(bool needsCompositing, Offset offset, Rect bounds, RRect clipRRect, PaintingContextCallback painter, {Clip clipBehavior = Clip.antiAlias}) {
assert(clipBehavior != null);
final Rect offsetBounds = bounds.shift(offset);
......@@ -435,7 +434,6 @@ class PaintingContext extends ClipContext {
/// * `painter` is a callback that will paint with the `clipPath` applied. This
/// function calls the `painter` synchronously.
/// * `clipBehavior` controls how the rounded rectangle is clipped.
// ignore: deprecated_member_use
void pushClipPath(bool needsCompositing, Offset offset, Rect bounds, Path clipPath, PaintingContextCallback painter, {Clip clipBehavior = Clip.antiAlias}) {
assert(clipBehavior != null);
final Rect offsetBounds = bounds.shift(offset);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment