I am getting this warning:
When I click on the image, it just opens the associated Editor, but it doesn't say the line number where the warning is raised.
I don't want to add @SuppressWarning("unchecked")
on the whole class...
Any workaround/fix?
I'm not sure why your IDE does not show you generic warnings, but you can try to compile with
-Xlint:unchecked
to get more details.