You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by em...@apache.org on 2007/09/06 05:26:19 UTC

svn commit: r573141 - /incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/fortest/Calculator.java

Author: ema
Date: Wed Sep  5 20:26:18 2007
New Revision: 573141

URL: http://svn.apache.org/viewvc?rev=573141&view=rev
Log:
*Corrected spelling error , thanks Glen

Modified:
    incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/fortest/Calculator.java

Modified: incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/fortest/Calculator.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/fortest/Calculator.java?rev=573141&r1=573140&r2=573141&view=diff
==============================================================================
--- incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/fortest/Calculator.java (original)
+++ incubator/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/java2ws/fortest/Calculator.java Wed Sep  5 20:26:18 2007
@@ -21,7 +21,7 @@
 public class Calculator {
     public int add(int a, int b) throws AddException {
         if (a < 0 || b < 0) {
-            throw new AddException("No negetive please");
+            throw new AddException("No negative values please");
         }
         return a + b;
     }