You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2007/02/09 16:22:31 UTC

svn commit: r505324 - in /incubator/cxf/trunk: api/src/main/java/org/apache/cxf/transports/http/QueryHandlerRegistry.java rt/core/src/main/java/org/apache/cxf/transport/http/QueryHandlerRegistryImpl.java

Author: seanoc
Date: Fri Feb  9 07:22:30 2007
New Revision: 505324

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

Modified:
    incubator/cxf/trunk/api/src/main/java/org/apache/cxf/transports/http/QueryHandlerRegistry.java
    incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/http/QueryHandlerRegistryImpl.java

Modified: incubator/cxf/trunk/api/src/main/java/org/apache/cxf/transports/http/QueryHandlerRegistry.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/api/src/main/java/org/apache/cxf/transports/http/QueryHandlerRegistry.java?view=diff&rev=505324&r1=505323&r2=505324
==============================================================================
--- incubator/cxf/trunk/api/src/main/java/org/apache/cxf/transports/http/QueryHandlerRegistry.java (original)
+++ incubator/cxf/trunk/api/src/main/java/org/apache/cxf/transports/http/QueryHandlerRegistry.java Fri Feb  9 07:22:30 2007
@@ -31,7 +31,7 @@
     /**
     * Register QueryHandler with registry in a specified position in the list
     */ 
-    void regsisterHandler(QueryHandler handler, int position);
+    void registerHandler(QueryHandler handler, int position);
     
     /**
      * Returns list of QueryHandlers

Modified: incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/http/QueryHandlerRegistryImpl.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/http/QueryHandlerRegistryImpl.java?view=diff&rev=505324&r1=505323&r2=505324
==============================================================================
--- incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/http/QueryHandlerRegistryImpl.java (original)
+++ incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/transport/http/QueryHandlerRegistryImpl.java Fri Feb  9 07:22:30 2007
@@ -56,7 +56,7 @@
         queryHandlers.add(handler);
     }
 
-    public void regsisterHandler(QueryHandler handler, int position) {
+    public void registerHandler(QueryHandler handler, int position) {
         queryHandlers.add(position, handler);
     }