This commit is contained in:
地平线
2015-09-22 17:55:29 +08:00
parent 34afb82916
commit 423bd1e0a9

View File

@@ -19,7 +19,7 @@ public class ObjectNode extends HashMap<String, Object> {
return node;
}
public ObjectNode and(String key, Object value) {
public ObjectNode appand(String key, Object value) {
this.put(key, value);
return this;
}