From 3e33959b7a99dbeccdc6fa8636768a99380a3b6b Mon Sep 17 00:00:00 2001 From: "yihua.huang" Date: Tue, 24 May 2016 13:17:35 +0800 Subject: [PATCH] #319 fix javadoc --- .../src/main/java/us/codecraft/webmagic/Site.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webmagic-core/src/main/java/us/codecraft/webmagic/Site.java b/webmagic-core/src/main/java/us/codecraft/webmagic/Site.java index d4fc727..a111314 100644 --- a/webmagic-core/src/main/java/us/codecraft/webmagic/Site.java +++ b/webmagic-core/src/main/java/us/codecraft/webmagic/Site.java @@ -471,7 +471,7 @@ public class Site { /** * Set httpProxyPool, String[0]:ip, String[1]:port
* - * @param httpProxyList httpProxyList + * @param proxyPool proxyPool * @return this */ public Site setHttpProxyPool(ProxyPool proxyPool) { @@ -479,6 +479,12 @@ public class Site { return this; } + /** + * Set httpProxyPool, String[0]:ip, String[1]:port
+ * + * @param httpProxyList httpProxyList + * @return this + */ public Site setHttpProxyPool(List httpProxyList, boolean isUseLastProxy) { this.httpProxyPool=new SimpleProxyPool(httpProxyList, isUseLastProxy); return this;