summaryrefslogtreecommitdiff
path: root/lib/soap/marshal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/soap/marshal.rb')
-rw-r--r--lib/soap/marshal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/soap/marshal.rb b/lib/soap/marshal.rb
index f45f80a0de..5c25fad0de 100644
--- a/lib/soap/marshal.rb
+++ b/lib/soap/marshal.rb
@@ -58,10 +58,10 @@ module Marshal
def unmarshal(stream, mapping_registry = MarshalMappingRegistry)
header, body = SOAP::Processor.unmarshal(stream)
+ #Mapping.soap2obj(body.root_node, mapping_registry)
Mapping.soap2obj(body.root_node, mapping_registry)
end
end
-
end