I have recently been working on a project where I switched the Stricted concurrency checking too complete.
After doing that I end up with several concurrency warning for @Injected variables.
final class GetCurrentLyrics: GetCurrentLyricsUseCase, Sendable {
//// Warning on this variable
@Injected(UseCasesContainer.getCurrentMedia) private var getCurrentMedia: GetCurrentMediaUseCase
xxxxxx rest of code
}
The @Injected variable produces the following warning: Stored property '_getCurrentMedia' of 'Sendable'-conforming class 'GetCurrentLyrics' is mutable. Could there be a way to remove this warning ?
Never the less thank you very much for this wonderful tool that is Factory.
Hello,
I have recently been working on a project where I switched the
Stricted concurrency checking
toocomplete
. After doing that I end up with several concurrency warning for@Injected
variables.The
@Injected
variable produces the following warning:Stored property '_getCurrentMedia' of 'Sendable'-conforming class 'GetCurrentLyrics' is mutable
. Could there be a way to remove this warning ?Never the less thank you very much for this wonderful tool that is Factory.