Skip to content

Commit

Permalink
Remove duplicated protocol adoption
Browse files Browse the repository at this point in the history
  • Loading branch information
hagmas authored and kzaher committed Apr 30, 2017
1 parent 9e6837f commit a6d508a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RxSwift/Disposables/BooleanDisposable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

/// Represents a disposable resource that can be checked for disposal status.
public final class BooleanDisposable : Disposable, Cancelable {
public final class BooleanDisposable : Cancelable {

internal static let BooleanDisposableTrue = BooleanDisposable(isDisposed: true)
private var _isDisposed = false
Expand Down
2 changes: 1 addition & 1 deletion RxSwift/Disposables/CompositeDisposable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

/// Represents a group of disposable resources that are disposed together.
public final class CompositeDisposable : DisposeBase, Disposable, Cancelable {
public final class CompositeDisposable : DisposeBase, Cancelable {
/// Key used to remove disposable from composite disposable
public struct DisposeKey {
fileprivate let key: BagKey
Expand Down
2 changes: 1 addition & 1 deletion RxSwift/Disposables/SingleAssignmentDisposable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Represents a disposable resource which only allows a single assignment of its un

If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an exception.
*/
public final class SingleAssignmentDisposable : DisposeBase, Disposable, Cancelable {
public final class SingleAssignmentDisposable : DisposeBase, Cancelable {

fileprivate enum DisposeState: UInt32 {
case disposed = 1
Expand Down

0 comments on commit a6d508a

Please sign in to comment.