()
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public JsonElement save() { |
| 47 | JsonObject jsonObject = new JsonObject(); |
| 48 | for (Map.Entry<String, String> entry : this.values.entrySet()) jsonObject.addProperty(entry.getKey(), entry.getValue()); |
| 49 | return jsonObject; |
| 50 | } |
| 51 | |
| 52 | public void put(final String key, final String value) { |
| 53 | this.values.put(key, value); |
no outgoing calls
no test coverage detected