You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by og...@apache.org on 2003/08/27 16:07:00 UTC

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient Wire.java

oglueck     2003/08/27 07:07:00

  Modified:    httpclient/src/java/org/apache/commons/httpclient Tag:
                        HTTPCLIENT_2_0_BRANCH Wire.java
  Log:
  fixed typo, reported by Andreas Probst
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.4.2.1   +5 -5      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/Wire.java
  
  Index: Wire.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/Wire.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- Wire.java	6 Apr 2003 22:31:53 -0000	1.4
  +++ Wire.java	27 Aug 2003 14:07:00 -0000	1.4.2.1
  @@ -186,7 +186,7 @@
       public static final void output(final String s)
         throws IOException {
           if (s == null) {
  -            throw new IllegalArgumentException("Output may noy be null"); 
  +            throw new IllegalArgumentException("Output may not be null"); 
           }
           output(s.getBytes());
       }
  @@ -194,7 +194,7 @@
       public static final void input(final String s)
         throws IOException {
           if (s == null) {
  -            throw new IllegalArgumentException("Input may noy be null"); 
  +            throw new IllegalArgumentException("Input may not be null"); 
           }
           input(s.getBytes());
       }