commit | 7e9ac7bf593a71b05b0879ddc34aaf82509052bb | [log] [tgz] |
---|---|---|
author | Bryan Duxbury <bryanduxbury@apache.org> | Mon Aug 09 15:25:34 2010 +0000 |
committer | Bryan Duxbury <bryanduxbury@apache.org> | Mon Aug 09 15:25:34 2010 +0000 |
tree | 13ae5fb8f8fca741c02fc120db65a36479c06b3e | |
parent | ea67a78377e7434cb750b6e7a1072e3729c8109f [diff] |
rb: Make MemoryTransport's inspect_buffer method work in Ruby 1.9 Patch: Rajesh Malepati git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@983680 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/rb/lib/thrift/transport/memory_buffer_transport.rb b/lib/rb/lib/thrift/transport/memory_buffer_transport.rb index b4a80f8..3169b2b 100644 --- a/lib/rb/lib/thrift/transport/memory_buffer_transport.rb +++ b/lib/rb/lib/thrift/transport/memory_buffer_transport.rb
@@ -88,9 +88,9 @@ out << ">" end - out << @buf[idx].to_s(16) + out << @buf[idx].ord.to_s(16) end out.join(" ") end end -end \ No newline at end of file +end