This commit is contained in:
@@ -124,7 +124,7 @@ public class RetResult<T> {
|
|||||||
*/
|
*/
|
||||||
public RetResult<T> attach(String key, Object value) {
|
public RetResult<T> attach(String key, Object value) {
|
||||||
if (this.attach == null) this.attach = new HashMap<>();
|
if (this.attach == null) this.attach = new HashMap<>();
|
||||||
boolean canstr = value instanceof CharSequence || value.getClass().isPrimitive();
|
boolean canstr = value != null && (value instanceof CharSequence || value.getClass().isPrimitive());
|
||||||
this.attach.put(key, value == null ? null : (canstr ? String.valueOf(value) : JsonConvert.root().convertTo(value)));
|
this.attach.put(key, value == null ? null : (canstr ? String.valueOf(value) : JsonConvert.root().convertTo(value)));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user