Skip to content

Commit

Permalink
we might not need the return after all
Browse files Browse the repository at this point in the history
  • Loading branch information
dfed committed Jan 19, 2024
1 parent 1e699ca commit 18dc6e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/SafeDICore/Models/Scope.swift
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ final class Scope: Hashable {
.compactMap {
switch $0.source {
case .received:
return $0.property
$0.property
case let .aliased(fulfillingProperty):
return fulfillingProperty
fulfillingProperty
case .forwarded,
.instantiated:
return nil
nil
}
}
}
Expand Down

0 comments on commit 18dc6e5

Please sign in to comment.