Skip to content

Commit dc93746

Browse files
committed
---
yaml --- r: 318203 b: refs/heads/master-rebranch c: 669e74b h: refs/heads/master i: 318201: a2b6335 318199: a8c49fa
1 parent d289d56 commit dc93746

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1457,4 +1457,4 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-08-02-a: ddd2b2976aa9bfde5f20fe37f6bd2
14571457
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-08-03-a: 171cc166f2abeb5ca2a4003700a8a78a108bd300
14581458
refs/heads/benlangmuir-patch-1: baaebaf39d52f3bf36710d4fe40cf212e996b212
14591459
refs/heads/i-do-redeclare: 8c4e6d5de5c1e3f0a2cedccf319df713ea22c48e
1460-
refs/heads/master-rebranch: 6fbaf385d1f8880338623c5bb2a4638f43b4dbbc
1460+
refs/heads/master-rebranch: 669e74b77af489e4f9680e00d6f29119aef13908

branches/master-rebranch/stdlib/public/Darwin/Intents/INIntent.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313
@_exported import Intents
1414
import Foundation
1515

16-
#if os(iOS) || os(watchOS) || os(macOS)
16+
#if os(iOS) || os(watchOS)
1717

1818
public protocol _INIntentSetImageKeyPath { }
1919

2020
extension _INIntentSetImageKeyPath {
2121

22-
@available(iOS 12.0, watchOS 5.0, macOS 10.14, *)
22+
@available(iOS 12.0, watchOS 5.0, *)
2323
public func setImage<Value>(_ image: INImage?, forParameterNamed parameterName: KeyPath<Self, Value>) {
2424
if let keyPathString = parameterName._kvcKeyPathString {
2525
(self as! INIntent).__setImage(image, forParameterNamed: keyPathString)
2626
}
2727
}
2828

29-
@available(iOS 12.0, watchOS 5.0, macOS 10.14, *)
29+
@available(iOS 12.0, watchOS 5.0, *)
3030
public func image<Value>(forParameterNamed parameterName: KeyPath<Self, Value>) -> INImage? {
3131
if let keyPathString = parameterName._kvcKeyPathString {
3232
return (self as! INIntent).__image(forParameterNamed: keyPathString)
@@ -36,7 +36,7 @@ extension _INIntentSetImageKeyPath {
3636
}
3737
}
3838

39-
@available(iOS 10.0, watchOS 3.2, macOS 10.12, *)
39+
@available(iOS 10.0, watchOS 3.2, *)
4040
extension INIntent : _INIntentSetImageKeyPath { }
4141

4242
#endif

0 commit comments

Comments
 (0)