commit | 6eaf814fcc9bb6ae40ea0f6f21cf9a60a90a40ae | [log] [tgz] |
---|---|---|
author | Kevin Clark <kclark@apache.org> | Wed Jun 18 00:55:50 2008 +0000 |
committer | Kevin Clark <kclark@apache.org> | Wed Jun 18 00:55:50 2008 +0000 |
tree | 83c6d8ce3fa70a02cb11ddfb0e7a3ef5ae7654ef | |
parent | 0d1849d88206b5205a8862471032d39206062f23 [diff] |
Remove requires of 'thrift/thrift' from library files git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@668909 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/rb/lib/thrift/protocol/tprotocol.rb b/lib/rb/lib/thrift/protocol/tprotocol.rb index edc894c..5d4e636 100644 --- a/lib/rb/lib/thrift/protocol/tprotocol.rb +++ b/lib/rb/lib/thrift/protocol/tprotocol.rb
@@ -9,8 +9,6 @@ # Author: Mark Slee <mcslee@facebook.com> # -require 'thrift/thrift' - module Thrift class ProtocolException < Exception
diff --git a/lib/rb/lib/thrift/server/tserver.rb b/lib/rb/lib/thrift/server/tserver.rb index 788467e..363055d 100644 --- a/lib/rb/lib/thrift/server/tserver.rb +++ b/lib/rb/lib/thrift/server/tserver.rb
@@ -8,9 +8,9 @@ # # Author: Mark Slee <mcslee@facebook.com> # -require('thrift/protocol/tprotocol') -require('thrift/protocol/tbinaryprotocol') -require('thrift/transport/ttransport') +require 'thrift/protocol/tprotocol' +require 'thrift/protocol/tbinaryprotocol' +require 'thrift/transport/ttransport' class TServer
diff --git a/lib/rb/lib/thrift/transport/ttransport.rb b/lib/rb/lib/thrift/transport/ttransport.rb index 9702ac2..b2fa813 100644 --- a/lib/rb/lib/thrift/transport/ttransport.rb +++ b/lib/rb/lib/thrift/transport/ttransport.rb
@@ -9,8 +9,6 @@ # Author: Mark Slee <mcslee@facebook.com> # -require 'thrift/thrift' - class TTransportException < Thrift::Exception UNKNOWN = 0