This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Patch: gnu.java.net.protocol.http.Connection


Hi list,


I just commited the attached patch to fix a little typo.


Michael


2004-01-27  Michael Koch  <konqueror@gmx.de>

	* gnu/java/net/protocol/http/Connection.java
	(getOutputStream): Fixed typo.

Index: gnu/java/net/protocol/http/Connection.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/net/protocol/http/Connection.java,v
retrieving revision 1.14
diff -u -b -B -r1.14 Connection.java
--- gnu/java/net/protocol/http/Connection.java	23 Jan 2004 12:32:23 -0000	1.14
+++ gnu/java/net/protocol/http/Connection.java	27 Jan 2004 21:00:41 -0000
@@ -387,7 +387,7 @@
   {
     if (connected)
       throw new ProtocolException
-	("You cannot get an outputstream for an existing http connection");
+	("You cannot get an output stream for an existing http connection");
 
     if (!doOutput)
       throw new ProtocolException

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]