oglueck     2003/08/27 07:08:16

  Modified:    httpclient/src/java/org/apache/commons/httpclient Wire.java
  Log:
  fixed typo, reported by Andreas Probst
  
  Revision  Changes    Path
  1.5       +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.5
  diff -u -r1.4 -r1.5
  --- Wire.java 6 Apr 2003 22:31:53 -0000       1.4
  +++ Wire.java 27 Aug 2003 14:08:16 -0000      1.5
  @@ -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());
       }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to