diff options
author | Vitaly Takmazov | 2015-11-04 15:19:11 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2015-11-04 15:19:11 +0300 |
commit | 5f08b8b1cfaacf1e78c56e7752277533eb84b02e (patch) | |
tree | c76927e18ec7df18deb753318a2852045398181e /src/main/java/com | |
parent | c3d949e11a4380a2353fca0abf12292285fde02c (diff) |
drop gson
Diffstat (limited to 'src/main/java/com')
-rw-r--r-- | src/main/java/com/juick/Message.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/com/juick/Message.java b/src/main/java/com/juick/Message.java index c87bf445..7875cea7 100644 --- a/src/main/java/com/juick/Message.java +++ b/src/main/java/com/juick/Message.java @@ -17,8 +17,6 @@ */ package com.juick; -import com.google.gson.annotations.SerializedName; - import java.util.ArrayList; import java.util.Arrays; import java.util.Date; @@ -29,13 +27,10 @@ import java.util.Date; */ public class Message { - @SerializedName("mid") public int MID = 0; - @SerializedName("rid") public int RID = 0; - @SerializedName("replyto") public int ReplyTo = 0; public String Text = null; public User User = null; |