Skip to content

Commit

Permalink
Fix build warnings with Xcode 14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tadija committed Sep 16, 2022
1 parent b97cdc1 commit 5c053a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/Transition/HeroTransition+Animate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import UIKit

extension HeroTransition {
open func animate() {
public func animate() {
guard state == .starting else { return }
state = .animating

Expand Down
2 changes: 1 addition & 1 deletion Sources/Transition/HeroTransition+Complete.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import UIKit

extension HeroTransition {
open func complete(finished: Bool) {
public func complete(finished: Bool) {
if state == .notified {
forceFinishing = finished
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Transition/HeroTransition+Start.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import UIKit

extension HeroTransition {
open func start() {
public func start() {
guard state == .notified else { return }
state = .starting

Expand Down

0 comments on commit 5c053a6

Please sign in to comment.