Skip to content

Commit c4f4a6e

Browse files
authored
Add the public modifier access to the disposeBag property (#74)
Add the public modifier access to the disposeBag property
2 parents 1c2d4e2 + 2b04d59 commit c4f4a6e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44
Current master
55
--------------
66

7-
- Nothing yet!
7+
- Add the public modifier access to the disposeBag property. See [#74](https://github.com/RxSwiftCommunity/NSObject-Rx/pull/74) - [@Vkt0r](https://github.com/Vkt0r)
88

99
5.0.1
1010
-----

HasDisposeBag.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ extension HasDisposeBag {
2020
return result
2121
}
2222

23-
var disposeBag: DisposeBag {
23+
public var disposeBag: DisposeBag {
2424
get {
2525
return synchronizedBag {
2626
if let disposeObject = objc_getAssociatedObject(self, &disposeBagContext) as? DisposeBag {

0 commit comments

Comments
 (0)