make private field public for accessibility

This commit is contained in:
Anthony Corbacho 2016-10-27 17:34:58 +09:00
parent aa55a5a003
commit ede1f185c9

View file

@ -23,9 +23,9 @@ import com.google.gson.Gson;
*/
public class WatcherMessage {
private String message;
private String noteId;
private String subject;
public String message;
public String noteId;
public String subject;
private static final Gson gson = new Gson();