diff options
author | Jose <jose@zeroc.com> | 2019-06-19 22:27:47 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-06-19 22:31:38 +0200 |
commit | dc712ce5760ebc4632f45fe3be60f79e7442c814 (patch) | |
tree | 41ec5611da88f3a0a05e257ac70fbb54c59fce1b | |
parent | Remove unused method (diff) | |
download | ice-dc712ce5760ebc4632f45fe3be60f79e7442c814.tar.bz2 ice-dc712ce5760ebc4632f45fe3be60f79e7442c814.tar.xz ice-dc712ce5760ebc4632f45fe3be60f79e7442c814.zip |
Fix iOS release build failure
-rw-r--r-- | swift/test/TestDriver/iOS/ControllerI.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swift/test/TestDriver/iOS/ControllerI.swift b/swift/test/TestDriver/iOS/ControllerI.swift index eae08d6fde8..b61107ec48b 100644 --- a/swift/test/TestDriver/iOS/ControllerI.swift +++ b/swift/test/TestDriver/iOS/ControllerI.swift @@ -24,7 +24,7 @@ class ProcessI: CommonProcess { func terminate(current: Ice.Current) throws -> String { _helper.shutdown() guard let adapter = current.adapter else { - precondition(false) + fatalError() } try adapter.remove(current.id) return _helper.getOutput() |