| Index: runtime/observatory/lib/src/elements/sentinel_value.dart
|
| diff --git a/runtime/observatory/lib/src/elements/sentinel_value.dart b/runtime/observatory/lib/src/elements/sentinel_value.dart
|
| index 70f648973c9eb93fbabf7df86d5f9cc18a992c26..7e1483f556b40efb87c81e1af06742b864514a72 100644
|
| --- a/runtime/observatory/lib/src/elements/sentinel_value.dart
|
| +++ b/runtime/observatory/lib/src/elements/sentinel_value.dart
|
| @@ -54,19 +54,18 @@ class SentinelValueElement extends HtmlElement implements Renderable {
|
| return 'This object has been reclaimed by the garbage collector.';
|
| case M.SentinelKind.expired:
|
| return 'The handle to this object has expired. '
|
| - 'Consider refreshing the page.';
|
| + 'Consider refreshing the page.';
|
| case M.SentinelKind.notInitialized:
|
| return 'This object will be initialized once it is accessed by '
|
| - 'the program.';
|
| + 'the program.';
|
| case M.SentinelKind.initializing:
|
| return 'This object is currently being initialized.';
|
| case M.SentinelKind.optimizedOut:
|
| return 'This object is no longer needed and has been removed by the '
|
| - 'optimizing compiler.';
|
| + 'optimizing compiler.';
|
| case M.SentinelKind.free:
|
| return '';
|
| }
|
| throw new Exception('Unknown SentinelKind: $kind');
|
| }
|
| -
|
| }
|
|
|