Author: dkulp Date: Mon Jan 14 21:28:51 2013 New Revision: 1433139 URL: http://svn.apache.org/viewvc?rev=1433139&view=rev Log: Merged revisions 1433136 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes
........ r1433136 | dkulp | 2013-01-14 16:27:15 -0500 (Mon, 14 Jan 2013) | 10 lines Merged revisions 1433135 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1433135 | dkulp | 2013-01-14 16:25:18 -0500 (Mon, 14 Jan 2013) | 2 lines Remove some unused code causing issues on j5 ........ ........ Modified: cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java Modified: cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java?rev=1433139&r1=1433138&r2=1433139&view=diff ============================================================================== --- cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java (original) +++ cxf/branches/2.6.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java Mon Jan 14 21:28:51 2013 @@ -468,24 +468,4 @@ public final class SOAPBindingUtil { } } - public static javax.jws.soap.SOAPBinding.Style getSoapStyle(String soapStyle) { - if ("".equals(soapStyle)) { - return null; - } else if ("RPC".equalsIgnoreCase(soapStyle)) { - return javax.jws.soap.SOAPBinding.Style.RPC; - } else { - return javax.jws.soap.SOAPBinding.Style.DOCUMENT; - } - } - - public static javax.jws.soap.SOAPBinding.Use getSoapUse(String soapUse) { - if ("".equals(soapUse)) { - return null; - } else if ("ENCODED".equalsIgnoreCase(soapUse)) { - return javax.jws.soap.SOAPBinding.Use.ENCODED; - } else { - return javax.jws.soap.SOAPBinding.Use.LITERAL; - } - } - }
