diff options
Diffstat (limited to 'java/test/Ice/exceptions/ServantLocatorI.java')
-rw-r--r-- | java/test/Ice/exceptions/ServantLocatorI.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/test/Ice/exceptions/ServantLocatorI.java b/java/test/Ice/exceptions/ServantLocatorI.java index 2cda43ba9aa..6619cd8f40c 100644 --- a/java/test/Ice/exceptions/ServantLocatorI.java +++ b/java/test/Ice/exceptions/ServantLocatorI.java @@ -12,15 +12,18 @@ package test.Ice.exceptions; public final class ServantLocatorI implements Ice.ServantLocator { + @Override public Ice.Object locate(Ice.Current curr, Ice.LocalObjectHolder cookie) { return null; } + @Override public void finished(Ice.Current curr, Ice.Object servant, java.lang.Object cookie) { } + @Override public void deactivate(String category) { } |