Skip to content

Commit

Permalink
Merge pull request #869 from yimajo/remove_unnecessary_retroactive
Browse files Browse the repository at this point in the history
  • Loading branch information
shin-usu authored Aug 29, 2024
2 parents 7b383b1 + 2a30346 commit 5ea41be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 36 deletions.
8 changes: 1 addition & 7 deletions app-ios/Sources/FavoriteFeature/FavoriteView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,7 @@ public struct FavoriteView: View {
}
}

#if hasFeature(RetroactiveAttribute)
extension DroidKaigi2024Day: @retroactive Selectable {}
#else
extension DroidKaigi2024Day: Selectable {}
#endif

extension DroidKaigi2024Day {
extension DroidKaigi2024Day: Model.Selectable {
public var id: Self {
self
}
Expand Down
24 changes: 3 additions & 21 deletions app-ios/Sources/SearchFeature/SearchView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,7 @@ public struct SearchView: View {
}
}

#if hasFeature(RetroactiveAttribute)
extension DroidKaigi2024Day: @retroactive Selectable {}
#else
extension DroidKaigi2024Day: Selectable {}
#endif

extension DroidKaigi2024Day {
extension DroidKaigi2024Day: Model.Selectable {
public var id: Self {
self
}
Expand All @@ -212,13 +206,7 @@ extension DroidKaigi2024Day {
}
}

#if hasFeature(RetroactiveAttribute)
extension TimetableSessionType: @retroactive Selectable {}
#else
extension TimetableSessionType: Selectable {}
#endif

extension TimetableSessionType {
extension TimetableSessionType: Model.Selectable {
public var id: Self {
self
}
Expand All @@ -228,13 +216,7 @@ extension TimetableSessionType {
}
}

#if hasFeature(RetroactiveAttribute)
extension Lang: @retroactive Selectable {}
#else
extension Lang: Selectable {}
#endif

extension Lang {
extension Lang: Model.Selectable {
public var id: Self {
self
}
Expand Down
4 changes: 0 additions & 4 deletions app-ios/Sources/Theme/ColorAsset+Sendable.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
#if hasFeature(RetroactiveAttribute)
extension ColorAsset: @retroactive @unchecked Sendable {}
#else
extension ColorAsset: @unchecked Sendable {}
#endif
4 changes: 0 additions & 4 deletions app-ios/Sources/Theme/FontConvertible+Sendable.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
#if hasFeature(RetroactiveAttribute)
extension FontConvertible: @retroactive @unchecked Sendable {}
#else
extension FontConvertible: @unchecked Sendable {}
#endif

0 comments on commit 5ea41be

Please sign in to comment.