Author: gmazza
Date: Thu Jul 31 18:53:23 2008
New Revision: 681585

URL: http://svn.apache.org/viewvc?rev=681585&view=rev
Log:
Typos fixed.

Modified:
    cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/Fault.java
    
cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java
    
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/TestSOAPHandler.java

Modified: cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/Fault.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/Fault.java?rev=681585&r1=681584&r2=681585&view=diff
==============================================================================
--- cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/Fault.java (original)
+++ cxf/trunk/api/src/main/java/org/apache/cxf/interceptor/Fault.java Thu Jul 
31 18:53:23 2008
@@ -101,9 +101,7 @@
     }
 
     /**
-     * Returns the detail node. If no detail node has been set, an empty
-     * <code>&lt;detail&gt;</code> is created.
-     * 
+     * Returns the detail node.
      * @return the detail node.
      */
     public Element getDetail() {
@@ -129,6 +127,12 @@
         return this.detail != null;
     }
 
+    /**
+     * Returns the detail node. If no detail node has been set, an empty
+     * <code>&lt;detail&gt;</code> is created.
+     * 
+     * @return the detail node.
+     */
     public Element getOrCreateDetail() {
         if (detail == null) {
             detail = DOMUtils.createDocument().createElement("detail");

Modified: 
cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java?rev=681585&r1=681584&r2=681585&view=diff
==============================================================================
--- 
cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java
 (original)
+++ 
cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java
 Thu Jul 31 18:53:23 2008
@@ -120,7 +120,7 @@
                 } else {
                     d = checkRestfulRequest(request);
                     if (d == null || d.getMessageObserver() == null) {         
               
-                        LOG.warning("Can't find the the request for " 
+                        LOG.warning("Can't find the request for " 
                                     + request.getRequestURL() + "'s Observer 
");
                         generateNotFound(request, res);
                     }  else { // the request should be a restful service 
request

Modified: 
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/TestSOAPHandler.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/TestSOAPHandler.java?rev=681585&r1=681584&r2=681585&view=diff
==============================================================================
--- 
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/TestSOAPHandler.java
 (original)
+++ 
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/handlers/TestSOAPHandler.java
 Thu Jul 31 18:53:23 2008
@@ -231,8 +231,8 @@
                     body.appendChild(wrapper); 
 
                     for (String info : getHandlerInfoList(ctx)) {
-                        // copy the the previously invoked handler list into 
the response.  
-                        // Ignore this handlers information as it will be 
added again later.
+                        // copy the previously invoked handler list into the 
response.  
+                        // Ignore this handler's information as it will be 
added again later.
                         //
                         if (!info.contains(getHandlerId())) {
                             Node newEl = doc.createElementNS(namespace, 
"HandlersInfo");


Reply via email to