hi, is it possible to tel IDE that this unused met...
# announcements
m
hi, is it possible to tel IDE that this unused method is part of API that this library provides? so I won’t get unwanted warnings?
m
Copy code
@SuppressWarnings("unused")
should be what you need
c
or write a unit test for the method
😁 4
👍 1
m
I thought that there was an annotation that you can put on class that every public method is an API
a
Actually, I see that you can add an annotation to "Unused symbol" inspection options.
👍 1