Unverified Commit 99fd65e7 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Remove print and fix code formatting (#43843)

parent b8857c87
...@@ -553,8 +553,9 @@ class _MaterialAppState extends State<MaterialApp> { ...@@ -553,8 +553,9 @@ class _MaterialAppState extends State<MaterialApp> {
key: GlobalObjectKey(this), key: GlobalObjectKey(this),
navigatorKey: widget.navigatorKey, navigatorKey: widget.navigatorKey,
navigatorObservers: _navigatorObservers, navigatorObservers: _navigatorObservers,
pageRouteBuilder: <T>(RouteSettings settings, WidgetBuilder builder) => pageRouteBuilder: <T>(RouteSettings settings, WidgetBuilder builder) {
MaterialPageRoute<T>(settings: settings, builder: builder), return MaterialPageRoute<T>(settings: settings, builder: builder);
},
home: widget.home, home: widget.home,
routes: widget.routes, routes: widget.routes,
initialRoute: widget.initialRoute, initialRoute: widget.initialRoute,
......
...@@ -432,7 +432,6 @@ void _defineTests() { ...@@ -432,7 +432,6 @@ void _defineTests() {
), ),
)); ));
List<SemanticsFlag> flags = SemanticsFlag.values.values.toList(); List<SemanticsFlag> flags = SemanticsFlag.values.values.toList();
print('flags: $flags');
// [SemanticsFlag.hasImplicitScrolling] isn't part of [SemanticsProperties] // [SemanticsFlag.hasImplicitScrolling] isn't part of [SemanticsProperties]
// therefore it has to be removed. // therefore it has to be removed.
flags.remove(SemanticsFlag.hasImplicitScrolling); flags.remove(SemanticsFlag.hasImplicitScrolling);
......
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