Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rubyjedi committed Jun 15, 2010
2 parents 75d13d0 + bbe08d8 commit 2b74a14
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -216,9 +216,9 @@ def to_wsdl
simple_types, array_types, complex_types = [], [], []
custom_types.each do |binding|
case
when binding.type.simple? : simple_types.push binding
when binding.type.array? : array_types.push binding
when binding.type.structured? : complex_types.push binding
when binding.type.simple? then simple_types.push binding
when binding.type.array? then array_types.push binding
when binding.type.structured? then complex_types.push binding
end
end
simple_types.each do |binding|
Expand Down

0 comments on commit 2b74a14

Please sign in to comment.