Skip to content

Commit 03f029c

Browse files
committed
加入原作者信息 chanjarster/weixin-java-tools#277
1 parent 782bc6a commit 03f029c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

weixin-java-common/src/main/java/me/chanjar/weixin/common/util/http/ApacheHttpClientBuilder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
/**
77
* httpclient build interface
8+
* @author kakotor
89
*/
910
public interface ApacheHttpClientBuilder {
1011

weixin-java-common/src/main/java/me/chanjar/weixin/common/util/http/DefaultApacheHttpClientBuilder.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package me.chanjar.weixin.common.util.http;
22

3-
import me.chanjar.weixin.common.util.StringUtils;
3+
import java.io.IOException;
4+
import java.util.concurrent.TimeUnit;
5+
46
import org.apache.http.annotation.NotThreadSafe;
57
import org.apache.http.auth.AuthScope;
68
import org.apache.http.auth.UsernamePasswordCredentials;
@@ -21,11 +23,11 @@
2123
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
2224
import org.apache.http.protocol.HttpContext;
2325

24-
import java.io.IOException;
25-
import java.util.concurrent.TimeUnit;
26+
import me.chanjar.weixin.common.util.StringUtils;
2627

2728
/**
2829
* httpclient 连接管理器
30+
* @author kakotor
2931
*/
3032
@NotThreadSafe
3133
public class DefaultApacheHttpClientBuilder implements ApacheHttpClientBuilder {

0 commit comments

Comments
 (0)