From c9d5b129e2b89e9d66dc3c934e01343f81199ac4 Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Tue, 29 Jan 2019 10:36:53 -0800 Subject: [PATCH] Remove obsolete ignore: (#27199) --- packages/flutter/lib/src/rendering/binding.dart | 3 +-- packages/flutter/lib/src/rendering/object.dart | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) 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);