Unverified Commit 45e097da authored by Sam Rawlins's avatar Sam Rawlins Committed by GitHub

Remove unused parameter from private method in widget_inspector (#61572)

parent 594c3541
......@@ -1424,7 +1424,7 @@ mixin WidgetInspectorService {
) ?? const <_DiagnosticsPathNode>[];
}
List<_DiagnosticsPathNode> _getRenderObjectParentChain(RenderObject renderObject, String groupName, { int maxparents }) {
List<_DiagnosticsPathNode> _getRenderObjectParentChain(RenderObject renderObject, String groupName) {
final List<RenderObject> chain = <RenderObject>[];
while (renderObject != null) {
chain.add(renderObject);
......
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