|
From: <vm...@us...> - 2003-10-04 08:34:49
|
Update of /cvsroot/junitbook/junitbook/fine/src/java/junitbook/fine/try1
In directory sc8-pr-cvs1:/tmp/cvs-serv24601/src/java/junitbook/fine/try1
Modified Files:
WebClient.java
Log Message:
- fixed bug
- renamed createHttpConnection to createHttpURLConnection
Index: WebClient.java
===================================================================
RCS file: /cvsroot/junitbook/junitbook/fine/src/java/junitbook/fine/try1/WebClient.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** WebClient.java 8 Jun 2003 15:27:42 -0000 1.3
--- WebClient.java 4 Oct 2003 08:34:42 -0000 1.4
***************
*** 72,76 ****
try
{
! HttpURLConnection connection = createHttpConnection(url);
InputStream is = connection.getInputStream();
--- 72,77 ----
try
{
! HttpURLConnection connection =
! createHttpURLConnection(url);
InputStream is = connection.getInputStream();
***************
*** 90,94 ****
}
! protected HttpURLConnection createHttpConnection(URL url)
throws IOException
{
--- 91,95 ----
}
! protected HttpURLConnection createHttpURLConnection(URL url)
throws IOException
{
|