diff --git a/packages/flutter/lib/src/rendering/binding.dart b/packages/flutter/lib/src/rendering/binding.dart index 41e823deaf..353c633e64 100644 --- a/packages/flutter/lib/src/rendering/binding.dart +++ b/packages/flutter/lib/src/rendering/binding.dart @@ -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 _forceRepaint() { diff --git a/packages/flutter/lib/src/rendering/object.dart b/packages/flutter/lib/src/rendering/object.dart index 5299c3d353..f0e9f87f3e 100644 --- a/packages/flutter/lib/src/rendering/object.dart +++ b/packages/flutter/lib/src/rendering/object.dart @@ -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);