Skip to content

Commit

Permalink
πŸ› Marks RxViewModel as open
Browse files Browse the repository at this point in the history
When `RxViewModel` was created `Swift` only had 3 access levels; and
thus marking it as `public` would suffice for subclassing; with `Swift`
3 this changed and we never got around modifying the access level on the
class to be `open` as reported on #50.
  • Loading branch information
esttorhe committed Jul 25, 2017
1 parent 69b9277 commit a498659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/RxViewModel.swift
Expand Up @@ -16,7 +16,7 @@ import RxSwift
Implements behaviors that drive the UI, and/or adapts a domain model to be
user-presentable.
*/
public class RxViewModel: NSObject {
open class RxViewModel: NSObject {
// MARK: Constants
let throttleTime: TimeInterval = 2

Expand Down

0 comments on commit a498659

Please sign in to comment.