- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 06 Oct 2009 14:48:19 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/request In directory hutz:/tmp/cvs-serv22744/src/org/w3c/unicorn/request Modified Files: URIRequest.java Log Message: 301 redirections has been corrected in Jigsaw's HttpURLConnection, removed useless code Index: URIRequest.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/request/URIRequest.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- URIRequest.java 6 Oct 2009 12:36:25 -0000 1.13 +++ URIRequest.java 6 Oct 2009 14:48:16 -0000 1.14 @@ -124,7 +124,6 @@ logger.debug("URL : " + aURL + " ."); HttpURLConnection aURLConnection = (HttpURLConnection) aURL.openConnection(); - aURLConnection.setInstanceFollowRedirects(true); aURLConnection.setConnectTimeout(connectTimeOut); aURLConnection.setReadTimeout(readTimeOut); aURLConnection.setRequestProperty("Accept-Language", this.sLang);
Received on Tuesday, 6 October 2009 14:48:23 UTC