Created by krishna on 15/10/17.
| 9 | */ |
| 10 | |
| 11 | public class JsonTest implements Serializable{ |
| 12 | @SerializedName("key2") |
| 13 | public String key2; |
| 14 | @SerializedName("key1") |
| 15 | public String key1; |
| 16 | |
| 17 | @Override |
| 18 | public String toString() { |
| 19 | return "JsonTest{" + |
| 20 | "key2='" + key2 + '\'' + |
| 21 | ", key1='" + key1 + '\'' + |
| 22 | '}'; |
| 23 | } |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…