Avoid setting Result object at all for now.

This commit is contained in:
Stan Campbell 2014-09-23 13:22:31 -07:00
parent c0f3f5bf51
commit 42a7b4cb62
1 changed files with 3 additions and 1 deletions

View File

@ -43,7 +43,9 @@ module Hermann
if value.kind_of? Array
return value.map { |e| self.push(e) }
else
@internal.push_single(value, result)
# Avoid passing the result object for now
# @internal.push_single(value, result)
@internal.push_single(value, nil)
end
return result