diff options
Diffstat (limited to 'swift/test/Ice/invoke/Server.swift')
-rw-r--r-- | swift/test/Ice/invoke/Server.swift | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/swift/test/Ice/invoke/Server.swift b/swift/test/Ice/invoke/Server.swift index 3bd198fe1c9..cd45bd97489 100644 --- a/swift/test/Ice/invoke/Server.swift +++ b/swift/test/Ice/invoke/Server.swift @@ -7,7 +7,7 @@ import TestCommon import Dispatch class ServantLocatorI: Ice.ServantLocator { - var _blobject: Ice.Object + var _blobject: Ice.Disp init (_ async: Bool) { if async { @@ -17,11 +17,11 @@ class ServantLocatorI: Ice.ServantLocator { } } - func locate(_ curr: Ice.Current) -> (returnValue: Ice.Object?, cookie: AnyObject?) { + func locate(_ curr: Ice.Current) -> (returnValue: Ice.Disp?, cookie: AnyObject?) { return (_blobject, nil) } - func finished(curr: Ice.Current, servant: Ice.Object, cookie: AnyObject?) {} + func finished(curr: Ice.Current, servant: Ice.Disp, cookie: AnyObject?) {} func deactivate(_ category: String) {} } |