Suppress false positive reduntant suppression warnings
bulldog98 opened this issue ยท 0 comments
Describe your enhancement
We have some instances of @SuppressWarnings("deprecation") on functions using registries, since forge deprecates them but fabric needs them. Intellij Idea then complains about these being not needed. @SuppressWarnings({"deprecation", "RedundantSuppression"}) fixes that.
I'll do a PR for that.