* mono-api-diff.cs: Fixed line endings.
[mono.git] / mcs / tools / wsdl / SampleGenerator.cs
index 220c34fee371d74134bff833153379b578c5c396..07308c86cd0c0cbe7961658712c468e90f8e4f1c 100644 (file)
@@ -861,19 +861,6 @@ namespace Mono.WebServices
                {
                        return s;
                }
-
-               void GetOperationFormat (OperationBinding obin, out SoapBindingStyle style, out SoapBindingUse use)
-               {
-                       style = SoapBindingStyle.Document;
-                       use = SoapBindingUse.Literal;
-                       SoapOperationBinding sob = obin.Extensions.Find (typeof(SoapOperationBinding)) as SoapOperationBinding;
-                       if (sob != null) {
-                               style = sob.Style;
-                               SoapBodyBinding sbb = obin.Input.Extensions.Find (typeof(SoapBodyBinding)) as SoapBodyBinding;
-                               if (sbb != null)
-                                       use = sbb.Use;
-                       }
-               }
        }