summaryrefslogtreecommitdiff
path: root/rb/src/IceRuby/Proxy.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-02-15 14:18:53 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-02-15 14:18:53 +0000
commit04a7d1f701bb8ed8cd4ca3330e779b1e6f683efa (patch)
treeeb22a146c1dc042b309cac65cfc5dc886a416ac4 /rb/src/IceRuby/Proxy.cpp
parentDeprecate Proxy::ice_defaultContext (diff)
downloadice-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.cpp14
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);