Skip to content

Commit abb2879

Browse files
committed
Merge pull request #2435 from apple/stdlib-remove-arg-labels
2 parents 9f67343 + 0562763 commit abb2879

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

test/1_stdlib/Inputs/DictionaryKeyValueTypesObjC.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ func convertArrayToNSArray<T>(_ array: [T]) -> NSArray {
937937
}
938938

939939
func getBridgedNSArrayOfValueTypeCustomBridged(
940-
numElements numElements: Int = 3,
940+
numElements: Int = 3,
941941
capacity: Int? = nil
942942
) -> NSArray {
943943
assert(!_isBridgedVerbatimToObjectiveC(TestBridgedValueTy.self))

validation-test/stdlib/Dictionary.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3467,7 +3467,7 @@ class MockDictionaryWithCustomCount : NSDictionary {
34673467
static var timesCountWasCalled = 0
34683468
}
34693469

3470-
func getMockDictionaryWithCustomCount(count count: Int)
3470+
func getMockDictionaryWithCustomCount(count: Int)
34713471
-> Dictionary<NSObject, AnyObject> {
34723472

34733473
return MockDictionaryWithCustomCount(count: count) as Dictionary

validation-test/stdlib/Set.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func getBridgedNSSetOfRefTypesBridgedVerbatim() -> NSSet {
249249
}
250250

251251
func getBridgedNSSet_ValueTypesCustomBridged(
252-
numElements numElements: Int = 3
252+
numElements: Int = 3
253253
) -> NSSet {
254254
expectTrue(!_isBridgedVerbatimToObjectiveC(TestBridgedKeyTy.self))
255255

@@ -3501,7 +3501,7 @@ class MockSetWithCustomCount : NSSet {
35013501
static var timesCountWasCalled = 0
35023502
}
35033503

3504-
func getMockSetWithCustomCount(count count: Int)
3504+
func getMockSetWithCustomCount(count: Int)
35053505
-> Set<NSObject> {
35063506

35073507
return MockSetWithCustomCount(count: count) as Set

0 commit comments

Comments
 (0)