| Index: samples/third_party/dromaeo/common/Interval.dart
|
| diff --git a/samples/third_party/dromaeo/common/Interval.dart b/samples/third_party/dromaeo/common/Interval.dart
|
| index ba76be8d7e5e06ccb3450de63df990bcfd8c2c68..47f1f68a9dec8a4d4b18b7b6f50d5fda66eb6f3d 100644
|
| --- a/samples/third_party/dromaeo/common/Interval.dart
|
| +++ b/samples/third_party/dromaeo/common/Interval.dart
|
| @@ -19,12 +19,12 @@ class Interval {
|
| }
|
|
|
| // Microseconds from between start() and stop().
|
| - int get elapsedMicrosec() {
|
| + int get elapsedMicrosec {
|
| return (_stop - _start) * 1000;
|
| }
|
|
|
| // Milliseconds from between start() and stop().
|
| - int get elapsedMillisec() {
|
| + int get elapsedMillisec {
|
| return (_stop - _start);
|
| }
|
| }
|
|
|