pull/1/head
tanghc 5 years ago
parent e62c6ee9a3
commit 3021345dd6
  1. 7
      sop-sdk/sdk-java/src/main/java/com/gitee/sop/sdk/request/BaseRequest.java

@ -56,14 +56,11 @@ public abstract class BaseRequest<T extends BaseResponse> {
protected abstract String method();
public BaseRequest() {
this.setMethodVersion(this.method(), this.version());
this.method = method();
this.version = version();
}
protected BaseRequest(String method, String version) {
this.setMethodVersion(method, version);
}
private void setMethodVersion(String method, String version) {
this.method = method;
this.version = version;
}

Loading…
Cancel
Save