Author: dkulp
Date: Thu Jul 29 21:11:19 2010
New Revision: 980577
URL: http://svn.apache.org/viewvc?rev=980577&view=rev
Log:
Merged revisions 979410 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r979410 | dkulp | 2010-07-26 14:59:36 -0400 (Mon, 26 Jul 2010) | 1 line
Remove some code that doesn't work.
........
Modified:
cxf/branches/2.2.x-fixes/ (props changed)
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/DefaultServiceConfiguration.java
Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/DefaultServiceConfiguration.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/DefaultServiceConfiguration.java?rev=980577&r1=980576&r2=980577&view=diff
==============================================================================
---
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/DefaultServiceConfiguration.java
(original)
+++
cxf/branches/2.2.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/DefaultServiceConfiguration.java
Thu Jul 29 21:11:19 2010
@@ -176,10 +176,7 @@ public class DefaultServiceConfiguration
@Override
public Boolean hasOutMessage(Method m) {
- if (m.getReturnType().getClass().equals(void.class) &&
m.getExceptionTypes().length == 0) {
- return false;
- }
- return true;
+ return Boolean.TRUE;
}
@Override