From d1ba756f0faf7f767f3b33f3d37144af46982e6a Mon Sep 17 00:00:00 2001 From: Ando Yasushi Date: Thu, 17 Apr 2014 22:19:02 +0900 Subject: [PATCH] refactor(WatchGroup): remove an interface WatchGroup does not need to implement both WatchRecord and Record because WatchRecord extends Record. --- lib/change_detection/watch_group.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/change_detection/watch_group.dart b/lib/change_detection/watch_group.dart index 452183d0b..b3261fb11 100644 --- a/lib/change_detection/watch_group.dart +++ b/lib/change_detection/watch_group.dart @@ -702,7 +702,7 @@ class _InvokeHandler extends _Handler implements _ArgHandlerList { } -class _EvalWatchRecord implements WatchRecord<_Handler>, Record<_Handler> { +class _EvalWatchRecord implements WatchRecord<_Handler> { static const int _MODE_INVALID_ = -2; static const int _MODE_DELETED_ = -1; static const int _MODE_MARKER_ = 0;