Skip to content
This repository has been archived by the owner on Aug 13, 2021. It is now read-only.

Commit

Permalink
Observer is now abstract class.
Browse files Browse the repository at this point in the history
Reviewers: #material_motion, O6 Material Android platform reviewers, O2 Material Motion, featherless

Reviewed By: #material_motion, O6 Material Android platform reviewers, O2 Material Motion, featherless

Tags: #material_motion

Differential Revision: http://codereview.cc/D2176
  • Loading branch information
Mark Wei committed Dec 8, 2016
1 parent d5a9b35 commit 5563594
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public MotionObservable(Subscriber<MotionObserver<T>> subscriber) {
/**
* An observer with an additional {@link #state(int)} method.
*/
public static abstract class MotionObserver<T> implements Observer<T> {
public static abstract class MotionObserver<T> extends Observer<T> {

@Override
public abstract void next(T value);
Expand Down

0 comments on commit 5563594

Please sign in to comment.