Commit 99c11b6b authored by Quxl's avatar Quxl

x

parent aa917bd1
...@@ -30,6 +30,11 @@ public class Rjx extends LinkedHashMap<String, Object> { ...@@ -30,6 +30,11 @@ public class Rjx extends LinkedHashMap<String, Object> {
private Rjx() {} private Rjx() {}
public Rjx loadMap(Map<String, Object> map) {
this.putAll(map);
return this;
}
public Rjx set(String key, Object value) { public Rjx set(String key, Object value) {
put(key, value); put(key, value);
return this; return this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment