Skip to content

Commit

Permalink
fix(atom): cursor IWatch impls (replace stubs)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 29, 2018
1 parent 318e62b commit cca801b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/atom/src/cursor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ export class Cursor<T> implements
}

removeWatch(id: string): boolean {
throw new Error("Method not implemented.");
return this.local.removeWatch(id);
}

notifyWatches(oldState: T, newState: T) {
throw new Error("Method not implemented.");
return this.local.notifyWatches(oldState, newState);
}
}

0 comments on commit cca801b

Please sign in to comment.