Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleve committed Jul 2, 2020
1 parent 2cbf743 commit ccfb88e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion Listable/Sources/Deprecations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,24 @@ import Foundation
///

//
// MARK: Deprecated May 29, 2019
// MARK: Deprecated Jul 1, 2020
//

public extension Section {

@available(*, deprecated, renamed: "Section.init(_:build:)")
init<Identifier:Hashable>(
identifier : Identifier,
build : Build = { _ in }
)
{
self.init(identifier, build: build)
}
}


//
// MARK: Deprecated May 29, 2020
//

@available(*, unavailable, renamed: "ItemContent")
Expand Down

0 comments on commit ccfb88e

Please sign in to comment.