diff options
Diffstat (limited to 'java/src/IceInternal/Outgoing.java')
-rw-r--r-- | java/src/IceInternal/Outgoing.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/java/src/IceInternal/Outgoing.java b/java/src/IceInternal/Outgoing.java index 81e945334e4..914944dc420 100644 --- a/java/src/IceInternal/Outgoing.java +++ b/java/src/IceInternal/Outgoing.java @@ -27,23 +27,6 @@ public final class Outgoing } // - // Do NOT use a finalizer, this would cause a severe performance - // penalty! We must make sure that destroy() is called instead, to - // reclaim resources. - // - public void - destroy() - { - assert(_is != null); - _is.destroy(); - _is = null; - - assert(_os != null); - _os.destroy(); - _os = null; - } - - // // This function allows this object to be reused, rather than // reallocated. // |