GOSSIP-30 Use getDeadMembers instead of getDeadList

This commit is contained in:
Rishabh Patel
2016-10-17 13:04:43 -07:00
parent 02ac78251e
commit 3d0ccf52e5
4 changed files with 9 additions and 19 deletions

View File

@ -87,7 +87,7 @@ The status can be polled using the getters that return immutable lists.
```java
List<LocalGossipMember> getMemberList()
public List<LocalGossipMember> getDeadList()
public List<LocalGossipMember> getDeadMembers()
```
These can be accessed from the `GossipManager` on your `GossipService`, e.g: