diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-15 14:18:53 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-15 14:18:53 +0000 |
commit | 04a7d1f701bb8ed8cd4ca3330e779b1e6f683efa (patch) | |
tree | eb22a146c1dc042b309cac65cfc5dc886a416ac4 /rb/src/IceRuby/Proxy.cpp | |
parent | Deprecate Proxy::ice_defaultContext (diff) | |
download | ice-04a7d1f701bb8ed8cd4ca3330e779b1e6f683efa.tar.bz2 ice-04a7d1f701bb8ed8cd4ca3330e779b1e6f683efa.tar.xz ice-04a7d1f701bb8ed8cd4ca3330e779b1e6f683efa.zip |
Remove Proxy::ice_defaultContext
Diffstat (limited to 'rb/src/IceRuby/Proxy.cpp')
-rw-r--r-- | rb/src/IceRuby/Proxy.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/rb/src/IceRuby/Proxy.cpp b/rb/src/IceRuby/Proxy.cpp index adcadfe49d7..f3d4e1f8219 100644 --- a/rb/src/IceRuby/Proxy.cpp +++ b/rb/src/IceRuby/Proxy.cpp @@ -415,19 +415,6 @@ IceRuby_ObjectPrx_ice_context(VALUE self, VALUE ctx) extern "C" VALUE -IceRuby_ObjectPrx_ice_defaultContext(VALUE self) -{ - ICE_RUBY_TRY - { - Ice::ObjectPrx p = getProxy(self); - return createProxy(p->ice_defaultContext()); - } - ICE_RUBY_CATCH - return Qnil; -} - -extern "C" -VALUE IceRuby_ObjectPrx_ice_getFacet(VALUE self) { ICE_RUBY_TRY @@ -1371,7 +1358,6 @@ IceRuby::initProxy(VALUE iceModule) rb_define_method(_proxyClass, "ice_identity", CAST_METHOD(IceRuby_ObjectPrx_ice_identity), 1); rb_define_method(_proxyClass, "ice_getContext", CAST_METHOD(IceRuby_ObjectPrx_ice_getContext), 0); rb_define_method(_proxyClass, "ice_context", CAST_METHOD(IceRuby_ObjectPrx_ice_context), 1); - rb_define_method(_proxyClass, "ice_defaultContext", CAST_METHOD(IceRuby_ObjectPrx_ice_defaultContext), 0); rb_define_method(_proxyClass, "ice_getFacet", CAST_METHOD(IceRuby_ObjectPrx_ice_getFacet), 0); rb_define_method(_proxyClass, "ice_facet", CAST_METHOD(IceRuby_ObjectPrx_ice_facet), 1); rb_define_method(_proxyClass, "ice_getAdapterId", CAST_METHOD(IceRuby_ObjectPrx_ice_getAdapterId), 0); |