Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
cp committed Jan 25, 2019
1 parent f48d808 commit 66fe81d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/main/java/com/jutils/jhttp/http/request/HttpManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public HttpManager delete(HttpResultListeners callback) {
return this;
}

//PUR Method
//PUT Method
public HttpManager put() {
service(this.PUT, null);
return this;
Expand Down Expand Up @@ -133,7 +133,12 @@ public HttpManager setParams(Object params) {
}

public HttpManager setTimeOutTime(int value) {
TIME_OUT = value;
HttpManager.TIME_OUT = value;
return this;
}

public HttpManager setProtocol(String protocol) {
HttpManager.protocol = protocol;
return this;
}

Expand Down

0 comments on commit 66fe81d

Please sign in to comment.