As suggested by DaveA, remove useless information, which just repeats the declaration. NFC.

Swift SVN r27158
This commit is contained in:
Roman Levenstein
2015-04-09 02:35:28 +00:00
parent 90e5f932c7
commit 8341a4f5b3

View File

@@ -145,10 +145,6 @@ public func _forceBridgeFromObjectiveC<T>(x: AnyObject, _: T.Type) -> T {
/// Convert `x` from its Objective-C representation to its Swift
/// representation.
///
/// - `T` should conform to `_ObjectiveCBridgeable`.
/// - `x` should be of type T._ObjectiveCType or one of its subclasses.
/// - returns the result of `T._forceBridgeFromObjectiveC(x)`.
@asmname("_knownForceBridgeFromObjectiveC")
public func _knownForceBridgeFromObjectiveC<T:_ObjectiveCBridgeable>(x: T._ObjectiveCType, _: T.Type) -> T {
var result: T?
@@ -185,10 +181,6 @@ public func _conditionallyBridgeFromObjectiveC<T>(
/// Attempt to convert `x` from its Objective-C representation to its Swift
/// representation.
///
/// - `T` should conform to `_ObjectiveCBridgeable`.
/// - `x` should be of type T._ObjectiveCType or one of its subclasses.
/// - returns the result of `T._conditionallyBridgeFromObjectiveC(x)`.
@asmname("_knownConditionallyBridgeFromObjectiveC")
public func _knownConditionallyBridgeFromObjectiveC<T:_ObjectiveCBridgeable>(
x: T._ObjectiveCType,