Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
refactor(WatchGroup): remove an interface
Browse files Browse the repository at this point in the history
WatchGroup does not need to implement both WatchRecord<H> and Record<H>
because WatchRecord<H> extends Record<H>.

Closes #927
  • Loading branch information
technohippy authored and mhevery committed Apr 18, 2014
1 parent 1dc7555 commit 9fdd208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/change_detection/watch_group.dart
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,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;
Expand Down

0 comments on commit 9fdd208

Please sign in to comment.