Skip to content

Commit 248e9a7

Browse files
[gardening] Remove double spaces.
1 parent 212aba5 commit 248e9a7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test/1_stdlib/Inputs/DictionaryKeyValueTypesObjC.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Foundation
55

66
// FIXME: Should go into the standard library.
77
public extension _ObjectiveCBridgeable {
8-
static func _unconditionallyBridgeFromObjectiveC(_ source: _ObjectiveCType?)
8+
static func _unconditionallyBridgeFromObjectiveC(_ source: _ObjectiveCType?)
99
-> Self {
1010
var result: Self? = nil
1111
_forceBridgeFromObjectiveC(source!, result: &result)
@@ -101,7 +101,7 @@ class TestObjCKeyTy : NSObject, NSCopying {
101101
return value.description
102102
}
103103

104-
override func isEqual(_ object: AnyObject!) -> Bool {
104+
override func isEqual(_ object: AnyObject!) -> Bool {
105105
if let other = object {
106106
if let otherObjcKey = other as? TestObjCKeyTy {
107107
return self.value == otherObjcKey.value
@@ -182,7 +182,7 @@ class TestObjCEquatableValueTy : NSObject {
182182
serial = -serial
183183
}
184184

185-
override func isEqual(_ object: AnyObject!) -> Bool {
185+
override func isEqual(_ object: AnyObject!) -> Bool {
186186
if let other = object {
187187
if let otherObjcKey = other as? TestObjCEquatableValueTy {
188188
return self.value == otherObjcKey.value
@@ -242,15 +242,15 @@ struct TestBridgedKeyTy
242242
return TestObjCKeyTy(value)
243243
}
244244

245-
static func _forceBridgeFromObjectiveC(
245+
static func _forceBridgeFromObjectiveC(
246246
_ x: TestObjCKeyTy,
247247
result: inout TestBridgedKeyTy?
248248
) {
249249
_bridgedKeyBridgeOperations.fetchAndAdd(1)
250250
result = TestBridgedKeyTy(x.value)
251251
}
252252

253-
static func _conditionallyBridgeFromObjectiveC(
253+
static func _conditionallyBridgeFromObjectiveC(
254254
_ x: TestObjCKeyTy,
255255
result: inout TestBridgedKeyTy?
256256
) -> Bool {
@@ -303,15 +303,15 @@ struct TestBridgedValueTy : CustomStringConvertible, _ObjectiveCBridgeable {
303303
return TestObjCValueTy(value)
304304
}
305305

306-
static func _forceBridgeFromObjectiveC(
306+
static func _forceBridgeFromObjectiveC(
307307
_ x: TestObjCValueTy,
308308
result: inout TestBridgedValueTy?
309309
) {
310310
TestBridgedValueTy.bridgeOperations += 1
311311
result = TestBridgedValueTy(x.value)
312312
}
313313

314-
static func _conditionallyBridgeFromObjectiveC(
314+
static func _conditionallyBridgeFromObjectiveC(
315315
_ x: TestObjCValueTy,
316316
result: inout TestBridgedValueTy?
317317
) -> Bool {
@@ -357,15 +357,15 @@ struct TestBridgedEquatableValueTy
357357
return TestObjCEquatableValueTy(value)
358358
}
359359

360-
static func _forceBridgeFromObjectiveC(
360+
static func _forceBridgeFromObjectiveC(
361361
_ x: TestObjCEquatableValueTy,
362362
result: inout TestBridgedEquatableValueTy?
363363
) {
364364
_bridgedEquatableValueBridgeOperations.fetchAndAdd(1)
365365
result = TestBridgedEquatableValueTy(x.value)
366366
}
367367

368-
static func _conditionallyBridgeFromObjectiveC(
368+
static func _conditionallyBridgeFromObjectiveC(
369369
_ x: TestObjCEquatableValueTy,
370370
result: inout TestBridgedEquatableValueTy?
371371
) -> Bool {

0 commit comments

Comments
 (0)