You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After splitting base into several repositories, some of the types and some of the methods became unused. Also, many endpoints are over-exposed — typically, being public instead of package-private.
During the migration to Java 11, the "unused" warnings were suppressed with
@SuppressWarnings("unused") /* Part of the public API. */
The over-exposed methods were left intact.
When addressing this issue, one should review the "unused" and over-exposed pieces. And either remove/hide them, or cover with the corresponding tests.
The text was updated successfully, but these errors were encountered:
After splitting
base
into several repositories, some of the types and some of the methods became unused. Also, many endpoints are over-exposed — typically, beingpublic
instead of package-private.During the migration to Java 11, the "unused" warnings were suppressed with
The over-exposed methods were left intact.
When addressing this issue, one should review the "unused" and over-exposed pieces. And either remove/hide them, or cover with the corresponding tests.
The text was updated successfully, but these errors were encountered: