Skip to content

Commit

Permalink
open builders
Browse files Browse the repository at this point in the history
  • Loading branch information
NullIsOne committed Sep 20, 2022
1 parent 58964e4 commit 174aafc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Collection/CollectionBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class CollectionBuilder<T: BaseCollectionManager> {

// MARK: - Initialization

init(view: UICollectionView, manager: T) {
public init(view: UICollectionView, manager: T) {
self.view = view
self.manager = manager
self.manager.view = view
Expand Down
2 changes: 1 addition & 1 deletion Source/Stack/Stack+RDDM.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class StackBuilder<T: BaseStackManager> {

// MARK: - Initialization

init(view: UIStackView, manager: T) {
public init(view: UIStackView, manager: T) {
self.view = view
self.manager = manager
}
Expand Down
2 changes: 1 addition & 1 deletion Source/Table/TableBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class TableBuilder<T: BaseTableManager> {

// MARK: - Initialization

init(view: UITableView, manager: T) {
public init(view: UITableView, manager: T) {
self.view = view
self.manager = manager
self.manager.view = view
Expand Down

0 comments on commit 174aafc

Please sign in to comment.