summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/IncomingBase.java
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-11-01 17:28:56 +0000
committerMarc Laukien <marc@zeroc.com>2004-11-01 17:28:56 +0000
commit13bed028fb55ba1caeb4af15d1a18b1778a9e378 (patch)
treef2c9b11446bec453488d20249842962d396bb201 /java/src/IceInternal/IncomingBase.java
parentmore glacier2 work (diff)
downloadice-13bed028fb55ba1caeb4af15d1a18b1778a9e378.tar.bz2
ice-13bed028fb55ba1caeb4af15d1a18b1778a9e378.tar.xz
ice-13bed028fb55ba1caeb4af15d1a18b1778a9e378.zip
AMD and dispatch exception handling fixes
Diffstat (limited to 'java/src/IceInternal/IncomingBase.java')
-rw-r--r--java/src/IceInternal/IncomingBase.java27
1 files changed, 2 insertions, 25 deletions
diff --git a/java/src/IceInternal/IncomingBase.java b/java/src/IceInternal/IncomingBase.java
index 73d5373bc9f..5356a1f7706 100644
--- a/java/src/IceInternal/IncomingBase.java
+++ b/java/src/IceInternal/IncomingBase.java
@@ -116,30 +116,7 @@ public class IncomingBase
}
final protected void
- __finishInvoke()
- {
- if(_locator != null && _servant != null)
- {
- _locator.finished(_current, _servant, _cookie.value);
- }
-
- //
- // Send a response if necessary. If we don't need to send a
- // response, we still need to tell the connection that we're
- // finished with dispatching.
- //
- if(_response)
- {
- _connection.sendResponse(_os, _compress);
- }
- else
- {
- _connection.sendNoResponse();
- }
- }
-
- final protected void
- __warning(Exception ex)
+ __warning(java.lang.Exception ex)
{
assert(_os != null);
@@ -167,5 +144,5 @@ public class IncomingBase
protected BasicStream _os;
- private Ice.ConnectionI _connection;
+ protected Ice.ConnectionI _connection;
}