We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c40b74 commit b05b44eCopy full SHA for b05b44e
packages/flutter/lib/src/rendering/object.dart
@@ -2295,12 +2295,6 @@ abstract class RenderObject extends AbstractNode with DiagnosticableTreeMixin im
2295
return;
2296
}
2297
2298
- assert(() {
2299
- final AbstractNode? parent = this.parent;
2300
- if (parent is RenderObject)
2301
- return parent._needsCompositing;
2302
- return true;
2303
- }());
2304
// parent is fine (or there isn't one), but we are dirty
2305
if (owner != null)
2306
owner!._nodesNeedingCompositingBitsUpdate.add(this);
0 commit comments