Author: dkulp
Date: Mon Jan 14 21:27:15 2013
New Revision: 1433136
URL: http://svn.apache.org/viewvc?rev=1433136&view=rev
Log:
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.7.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java
Modified:
cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java?rev=1433136&r1=1433135&r2=1433136&view=diff
==============================================================================
---
cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java
(original)
+++
cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/wsdl11/SOAPBindingUtil.java
Mon Jan 14 21:27:15 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;
- }
- }
-
}