summaryrefslogtreecommitdiff
path: root/lib/wsdl/operation.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wsdl/operation.rb')
-rw-r--r--lib/wsdl/operation.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/wsdl/operation.rb b/lib/wsdl/operation.rb
index 727bb9a56c..fb7f4a80f4 100644
--- a/lib/wsdl/operation.rb
+++ b/lib/wsdl/operation.rb
@@ -120,9 +120,8 @@ private
if result.length == 0
return parts.dup
end
- if parts.length != result.length
- raise RuntimeError.new("Incomplete prarmeterOrder list.")
- end
+ # result length can be shorter than parts's.
+ # return part must not be a part of the parameterOrder.
result
end
end