Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
davdroman committed Jul 16, 2024
1 parent cfc3c30 commit ae29aa1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Sources/ViewTypes/Window.swift
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ extension iOSViewVersion<WindowType, UIWindow> {
public static let v17 = Self(for: .v17, selector: selector)
public static let v18 = Self(for: .v18, selector: selector)

@MainActor
private static var selector: IntrospectionSelector<UIWindow> {
.from(UIView.self, selector: { $0.window })
}
Expand All @@ -83,7 +82,6 @@ extension tvOSViewVersion<WindowType, UIWindow> {
public static let v17 = Self(for: .v17, selector: selector)
public static let v18 = Self(for: .v18, selector: selector)

@MainActor
private static var selector: IntrospectionSelector<UIWindow> {
.from(UIView.self, selector: { $0.window })
}
Expand All @@ -93,7 +91,6 @@ extension visionOSViewVersion<WindowType, UIWindow> {
public static let v1 = Self(for: .v1, selector: selector)
public static let v2 = Self(for: .v2, selector: selector)

@MainActor
private static var selector: IntrospectionSelector<UIWindow> {
.from(UIView.self, selector: { $0.window })
}
Expand All @@ -107,7 +104,6 @@ extension macOSViewVersion<WindowType, NSWindow> {
public static let v14 = Self(for: .v14, selector: selector)
public static let v15 = Self(for: .v15, selector: selector)

@MainActor
private static var selector: IntrospectionSelector<NSWindow> {
.from(NSView.self, selector: { $0.window })
}
Expand Down

0 comments on commit ae29aa1

Please sign in to comment.