#319 fix javadoc
parent
3a6e246350
commit
3e33959b7a
|
@ -471,7 +471,7 @@ public class Site {
|
||||||
/**
|
/**
|
||||||
* Set httpProxyPool, String[0]:ip, String[1]:port <br>
|
* Set httpProxyPool, String[0]:ip, String[1]:port <br>
|
||||||
*
|
*
|
||||||
* @param httpProxyList httpProxyList
|
* @param proxyPool proxyPool
|
||||||
* @return this
|
* @return this
|
||||||
*/
|
*/
|
||||||
public Site setHttpProxyPool(ProxyPool proxyPool) {
|
public Site setHttpProxyPool(ProxyPool proxyPool) {
|
||||||
|
@ -479,6 +479,12 @@ public class Site {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set httpProxyPool, String[0]:ip, String[1]:port <br>
|
||||||
|
*
|
||||||
|
* @param httpProxyList httpProxyList
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
public Site setHttpProxyPool(List<String[]> httpProxyList, boolean isUseLastProxy) {
|
public Site setHttpProxyPool(List<String[]> httpProxyList, boolean isUseLastProxy) {
|
||||||
this.httpProxyPool=new SimpleProxyPool(httpProxyList, isUseLastProxy);
|
this.httpProxyPool=new SimpleProxyPool(httpProxyList, isUseLastProxy);
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Reference in New Issue