--- /home/cpdev/src/classpath/gnu/java/net/protocol/http/HTTPConnection.java	2005-07-07 17:32:50.000000000 +0000
+++ gnu/java/net/protocol/http/HTTPConnection.java	2005-06-30 05:34:10.000000000 +0000
@@ -402,7 +402,7 @@
    * Retrieves the socket associated with this connection.
    * This creates the socket if necessary.
    */
-  protected synchronized Socket getSocket()
+  protected Socket getSocket()
     throws IOException
   {
     if (socket == null)
@@ -489,7 +489,7 @@
     sslSocketFactory = factory;
   }
 
-  protected synchronized InputStream getInputStream()
+  protected InputStream getInputStream()
     throws IOException
   {
     if (socket == null)
@@ -499,7 +499,7 @@
     return in;
   }
 
-  protected synchronized OutputStream getOutputStream()
+  protected OutputStream getOutputStream()
     throws IOException
   {
     if (socket == null)
@@ -512,7 +512,7 @@
   /**
    * Closes the underlying socket, if any.
    */
-  protected synchronized void closeConnection()
+  protected void closeConnection()
     throws IOException
   {
     if (socket != null)
