Replace fatalError with preconditionFailure (#647)

This commit is contained in:
Mike Schreiber 2021-07-23 14:48:57 -07:00 коммит произвёл GitHub
Родитель 34d1d5eeb0
Коммит edc6c70da9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -12,7 +12,7 @@ class TableViewCellFileAccessoryViewDemoController: UITableViewController {
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
preconditionFailure("init(coder:) has not been implemented")
}
override func viewDidLoad() {

Просмотреть файл

@ -46,7 +46,7 @@ open class CommandBar: UIView {
@available(*, unavailable)
public required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
preconditionFailure("init(coder:) has not been implemented")
}
/// Apply `isEnabled` and `isSelected` state from `CommandBarItem` to the buttons
@ -139,7 +139,7 @@ open class CommandBar: UIView {
itemGroups.map { items in
CommandBarButtonGroupView(buttons: items.compactMap { item in
guard let button = itemsToButtonsMap[item] else {
fatalError("Button is not initialized in commandsToButtons")
preconditionFailure("Button is not initialized in commandsToButtons")
}
return button

Просмотреть файл

@ -50,7 +50,7 @@ class CommandBarButton: UIButton {
@available(*, unavailable)
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
preconditionFailure("init(coder:) has not been implemented")
}
func updateState() {

Просмотреть файл

@ -24,7 +24,7 @@ class CommandBarButtonGroupView: UIView {
@available(*, unavailable)
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
preconditionFailure("init(coder:) has not been implemented")
}
private lazy var stackView: UIStackView = {

Просмотреть файл

@ -48,7 +48,7 @@ class SegmentPillButton: UIButton {
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
preconditionFailure("init(coder:) has not been implemented")
}
override func layoutSubviews() {

Просмотреть файл

@ -698,7 +698,7 @@ class BorderView: NSView {
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
preconditionFailure("init(coder:) has not been implemented")
}
override func draw(_ dirtyRect: NSRect) {

Просмотреть файл

@ -49,11 +49,11 @@ func findUsedResources(in rootPath: String) -> Set<String> {
#endif
}
} catch {
fatalError("Failed to read contents resource file: \(filePath) \nError: \(error)")
preconditionFailure("Failed to read contents resource file: \(filePath) \nError: \(error)")
}
}
} catch {
fatalError("Failed to retrieve resource file: \(fileURL) \nError: \(error)")
preconditionFailure("Failed to retrieve resource file: \(fileURL) \nError: \(error)")
}
}
}