diff --git a/stdlib/public/core/StringRangeReplaceableCollection.swift.gyb b/stdlib/public/core/StringRangeReplaceableCollection.swift.gyb index a50dc702cdafa..47b728616af7b 100644 --- a/stdlib/public/core/StringRangeReplaceableCollection.swift.gyb +++ b/stdlib/public/core/StringRangeReplaceableCollection.swift.gyb @@ -441,13 +441,6 @@ extension Sequence { } extension Collection { - @_inlineable // FIXME(sil-serialize-all) - public func compactMap( - _ transform: (Element) throws -> String? - ) rethrows -> [String] { - return try _compactMap(transform) - } - @available(swift, deprecated: 4.1, renamed: "compactMap(_:)", message: "Please use compactMap(_:) for the case where closure returns an optional value") @inline(__always)