This commit is contained in:
@@ -53,12 +53,12 @@ public class RetResult<T> {
|
|||||||
this.retcode = retcode;
|
this.retcode = retcode;
|
||||||
}
|
}
|
||||||
|
|
||||||
public RetResult(int retcode, String retinfo) {
|
public RetResult(int retcode, CharSequence retinfo) {
|
||||||
this.retcode = retcode;
|
this.retcode = retcode;
|
||||||
this.retinfo = retinfo;
|
this.retinfo = retinfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
public RetResult(int retcode, String retinfo, T result) {
|
public RetResult(int retcode, CharSequence retinfo, T result) {
|
||||||
this.retcode = retcode;
|
this.retcode = retcode;
|
||||||
this.retinfo = retinfo;
|
this.retinfo = retinfo;
|
||||||
this.result = result;
|
this.result = result;
|
||||||
|
|||||||
Reference in New Issue
Block a user