Commit 9fcdce39 authored by Hixie's avatar Hixie

Fix signature of toStringName()

...which I accidentally changed in a previous commit.
parent 832da040
...@@ -945,7 +945,7 @@ abstract class StatefulComponent extends Component { ...@@ -945,7 +945,7 @@ abstract class StatefulComponent extends Component {
_scheduleBuild(); _scheduleBuild();
} }
String toStringName([String prefix = '', String startPrefix = '']) { String toStringName() {
if (_disqualifiedFromEverAppearingAgain) if (_disqualifiedFromEverAppearingAgain)
return '[[DISQUALIFIED]] ${super.toStringName()}'; return '[[DISQUALIFIED]] ${super.toStringName()}';
return super.toStringName(); return super.toStringName();
......
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