Skip to content

Commit 22ef9e5

Browse files
committed
public modifier redundancy for Xcode 12
1 parent 83f6821 commit 22ef9e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/CoreUsefulSDK/Protocols/ViewControllerIdentifiable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public extension ViewControllerIdentifiable {
4242
- parameter bundle: Bundle for the storyboard. Default is `nil`.
4343
- returns: View Controller
4444
*/
45-
static func create(storyboard: String? = nil, vcIdentifier: String? = nil, bundle: Bundle? = nil) -> Self {
45+
public static func create(storyboard: String? = nil, vcIdentifier: String? = nil, bundle: Bundle? = nil) -> Self {
4646
let vc = UIStoryboard(name: storyboard ?? storyboardName(), bundle: bundle).instantiateViewController(withIdentifier: vcIdentifier ?? identifier())
4747
return vc as! Self
4848
}

0 commit comments

Comments
 (0)