Unverified Commit beffcf1b authored by Siva's avatar Siva Committed by GitHub

Fix incorrect generic type specification, causes a compilation error (#15049)

when a hot reload is done after modifying a component in the flutter
package.
parent 65731f75
......@@ -519,7 +519,7 @@ class _TheatreElement extends RenderObjectElement {
// children of its primary subtree's stack can be moved to this object's list
// of zombie children without changing their parent data objects.
class _RenderTheatre extends RenderBox
with RenderObjectWithChildMixin<RenderStack>, RenderProxyBoxMixin<RenderBox>,
with RenderObjectWithChildMixin<RenderStack>, RenderProxyBoxMixin<RenderStack>,
ContainerRenderObjectMixin<RenderBox, StackParentData> {
@override
......
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