Skip to content

Commit

Permalink
make hidden method public
Browse files Browse the repository at this point in the history
  • Loading branch information
lkzhao committed Sep 21, 2022
1 parent cbf3d07 commit 9ab4e2d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ extension ViewRenderNode {
}

extension ViewRenderNode {
internal func _makeView() -> Any {
public func _makeView() -> Any {
if View.self is UIView.Type {
switch reuseStrategy {
case .automatic:
Expand All @@ -64,7 +64,7 @@ extension ViewRenderNode {
}
return makeView()
}
internal func _updateView(_ view: Any) {
public func _updateView(_ view: Any) {
guard let view = view as? View else { return }
return updateView(view)
}
Expand Down

0 comments on commit 9ab4e2d

Please sign in to comment.