Skip to content

Commit 7c00d44

Browse files
authored
Reformat (#504)
1 parent da555c0 commit 7c00d44

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/devtools/lib/src/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,15 @@ class PerfToolFramework extends Framework {
152152
? 'This screen is disabled because you are not running a Flutter '
153153
'application'
154154
: 'This screen is disabled because you are running a profile build '
155-
'of your application',
155+
'of your application',
156156
));
157157
addScreen(TimelineScreen(
158158
disabled: !_isFlutterApp,
159159
disabledTooltip: _isFlutterWebApp
160160
? 'This screen is disabled because it is not yet ready for Flutter'
161161
' Web'
162162
: 'This screen is disabled because you are not running a '
163-
'Flutter application',
163+
'Flutter application',
164164
));
165165
addScreen(MemoryScreen(
166166
disabled: _isFlutterWebApp,

packages/devtools/lib/src/ui/fake_flutter/dart_ui/geometry.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ class Radius {
986986
return x == y
987987
? 'Radius.circular(${x.toStringAsFixed(1)})'
988988
: 'Radius.elliptical(${x.toStringAsFixed(1)}, '
989-
'${y.toStringAsFixed(1)})';
989+
'${y.toStringAsFixed(1)})';
990990
}
991991
}
992992

packages/devtools/web/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ void main() {
1616
if (!browser.isChrome) {
1717
framework.disableAppWithError(
1818
'ERROR: You are running DevTools on '
19-
'${browser.name == Browser.UnknownBrowser.name ? 'an unknown browswer' : browser.name}, '
20-
'but DevTools only runs on Chrome.',
19+
'${browser.name == Browser.UnknownBrowser.name ? 'an unknown browswer' : browser.name}, '
20+
'but DevTools only runs on Chrome.',
2121
'Reopen this url in a Chrome broswer to use DevTools.',
2222
);
2323
return;

0 commit comments

Comments
 (0)