Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6121baf + 5e90dd7 commit 9cfe051Copy full SHA for 9cfe051
src/main/java/rx/subjects/SubjectSubscriptionManager.java
@@ -40,8 +40,6 @@
40
= AtomicReferenceFieldUpdater.newUpdater(SubjectSubscriptionManager.class, State.class, "state");
41
/** Stores the latest value or the terminal value for some Subjects. */
42
volatile Object latest;
43
- static final AtomicReferenceFieldUpdater<SubjectSubscriptionManager, Object> LATEST_UPDATER
44
- = AtomicReferenceFieldUpdater.newUpdater(SubjectSubscriptionManager.class, Object.class, "latest");
45
/** Indicates that the subject is active (cheaper than checking the state).*/
46
boolean active = true;
47
/** Action called when a new subscriber subscribes but before it is added to the state. */
0 commit comments