| Index: pkg/analyzer/lib/src/util/utilities_timing.dart
|
| diff --git a/pkg/analyzer/lib/src/util/utilities_timing.dart b/pkg/analyzer/lib/src/util/utilities_timing.dart
|
| index 4d07fcd9bbf48dbf4bce8aee067d03ddbf3af0ee..7b8e122e2a97fdc46b4927607fa91f2f28eadd71 100644
|
| --- a/pkg/analyzer/lib/src/util/utilities_timing.dart
|
| +++ b/pkg/analyzer/lib/src/util/utilities_timing.dart
|
| @@ -26,14 +26,14 @@ class CountedStopwatch extends Stopwatch {
|
| int get averageMilliseconds => elapsedMilliseconds ~/ stopCount;
|
|
|
| @override
|
| - void stop() {
|
| - super.stop();
|
| - stopCount++;
|
| - }
|
| -
|
| - @override
|
| void reset() {
|
| super.reset();
|
| stopCount = 0;
|
| }
|
| -}
|
| +
|
| + @override
|
| + void stop() {
|
| + super.stop();
|
| + stopCount++;
|
| + }
|
| +}
|
|
|