I have this snippet code :
@available(*, deprecated:3.0, message:"Use activate().")
public func install() {
self.activate()
}
And since i've upgraded to swift5 and xcode 10.2 i get below warning :
Unexpected version number in 'available' attribute for non-specific platform '*'
And fixed with :
Replace ':3.0' with ''
What is this warning? what does it say?