Author: mmao
Date: Tue Dec 25 19:05:53 2007
New Revision: 606834
URL: http://svn.apache.org/viewvc?rev=606834&view=rev
Log:
* Fix the checks
Modified:
incubator/cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java
Modified:
incubator/cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java?rev=606834&r1=606833&r2=606834&view=diff
==============================================================================
---
incubator/cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java
(original)
+++
incubator/cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/binding/http/HTTPBindingImpl.java
Tue Dec 25 19:05:53 2007
@@ -48,8 +48,8 @@
private void validate() {
for (Handler handler : this.getHandlerChain()) {
if (!(handler instanceof LogicalHandler)) {
- throw new WebServiceException("Adding an incompatible handler
in javax.xml.ws.http.HTTPBinding: "
- + handler.getClass());
+ throw new WebServiceException("Adding an incompatible handler
in HTTPBinding: "
+ + handler.getClass());
}
}
}