diff options
author | Jose <jose@zeroc.com> | 2019-06-13 17:18:26 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-06-13 17:18:26 +0200 |
commit | 03536ae40a95993348fe6615a2c1910415859443 (patch) | |
tree | d6aa76249153f350e7d72921f82b24f36e886447 | |
parent | Fix iOS test controller build failures (diff) | |
download | ice-03536ae40a95993348fe6615a2c1910415859443.tar.bz2 ice-03536ae40a95993348fe6615a2c1910415859443.tar.xz ice-03536ae40a95993348fe6615a2c1910415859443.zip |
Minor format fix
-rw-r--r-- | swift/test/TestDriver/iOS/ControllerI.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/swift/test/TestDriver/iOS/ControllerI.swift b/swift/test/TestDriver/iOS/ControllerI.swift index 39b73618fab..eae08d6fde8 100644 --- a/swift/test/TestDriver/iOS/ControllerI.swift +++ b/swift/test/TestDriver/iOS/ControllerI.swift @@ -85,7 +85,8 @@ class ProcessControllerI: CommonProcessController { queue: (exe == "Server" || exe == "ServerAMD") ? _serverDispatchQueue : _clientDispatchQueue) helper.run() - return try uncheckedCast(prx: adapter.addWithUUID(CommonProcessDisp(ProcessI(helper: helper))), type: CommonProcessPrx.self) + return try uncheckedCast(prx: adapter.addWithUUID( + CommonProcessDisp(ProcessI(helper: helper))), type: CommonProcessPrx.self) } func getHost(protocol _: String, |