Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
Make update views function public
Browse files Browse the repository at this point in the history
  • Loading branch information
david-swift committed Jul 7, 2024
1 parent 25d1d66 commit fcc8ec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Model/Data Flow/StateManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public enum StateManager {
/// - Parameter force: Whether to force all views to update.
///
/// Nothing happens if ``UpdateManager/blockUpdates`` is true.
static func updateViews(force: Bool = false) {
public static func updateViews(force: Bool = false) {
if !blockUpdates {
for handler in updateHandlers {
handler(force)
Expand Down

0 comments on commit fcc8ec4

Please sign in to comment.