What’s the approach to “unused” public APIs if you...
# multiplatform
p
What’s the approach to “unused” public APIs if you are only using them from Swift? Just suppress all those warnings? Or some custom annotation for
@DontTouch
so your colleagues won’t delete them during refactoring?
l
I'd rather name such an annotation
@PublicApi
,
@PublicApiForSwift
or alike. "Don't touch" doesn't age well in codebases.
👍 2