Closed uebo closed 2 years ago
Hi, the following warning occurred due to Swift Concurrency support.
No 'async' operations occur within 'await' expression
I think that crashOnProtocolSuperclassCall() method is not an async method so I don't need an await clause.
crashOnProtocolSuperclassCall()
Thanks.
I've added some async methods and it does indeed seem like the await is superfluous in this case. Thanks a lot for your contribution. 🙂 I've merged it and it will be released in the next version shortly.
Hi, the following warning occurred due to Swift Concurrency support.
No 'async' operations occur within 'await' expression
I think that
crashOnProtocolSuperclassCall()
method is not an async method so I don't need an await clause.Thanks.