Small cleanup

This commit is contained in:
Joseph Price
2015-02-21 15:31:23 -05:00
parent 07f47aced6
commit 4aba10d2c3
19 changed files with 193 additions and 164 deletions

View File

@ -2,8 +2,8 @@ package com.google.code.gossip.event;
public enum GossipState {
UP("up"), DOWN("down");
private String state;
private final String state;
private GossipState(String state){
this.state = state;
}