Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
Don't call RxSwift internal func rxFatalError
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhitley committed Apr 12, 2017
1 parent a2a7123 commit 68bb452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Automaton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ extension ObservableType {
case let .error(error):
let error = "Binding error to variable: \(error)"
#if DEBUG
rxFatalError(error)
fatalError(error)
#else
print(error)
#endif
Expand Down

0 comments on commit 68bb452

Please sign in to comment.