Skip to content

Commit 9fdd208

Browse files
technohippymhevery
authored andcommitted
refactor(WatchGroup): remove an interface
WatchGroup does not need to implement both WatchRecord<H> and Record<H> because WatchRecord<H> extends Record<H>. Closes dart-archive#927
1 parent 1dc7555 commit 9fdd208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/change_detection/watch_group.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ class _InvokeHandler extends _Handler implements _ArgHandlerList {
714714
}
715715

716716

717-
class _EvalWatchRecord implements WatchRecord<_Handler>, Record<_Handler> {
717+
class _EvalWatchRecord implements WatchRecord<_Handler> {
718718
static const int _MODE_INVALID_ = -2;
719719
static const int _MODE_DELETED_ = -1;
720720
static const int _MODE_MARKER_ = 0;

0 commit comments

Comments
 (0)