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
With the 3.0.X releases, static code analyzers may issue a false-positive Potential Resource Memory Leak Warning on non-AutoClosable memory objects, such as on-heap Memory objects (e.g., wrapped arrays) or wrapped ByteBuffers.
These warnings can be suppressed with a @SuppressWarnings("resource") annotation or disabled within the static code analyzer.
This will be fixed with the next major release.
The text was updated successfully, but these errors were encountered:
With the 3.0.X releases, static code analyzers may issue a false-positive Potential Resource Memory Leak Warning on non-AutoClosable memory objects, such as on-heap Memory objects (e.g., wrapped arrays) or wrapped ByteBuffers.
These warnings can be suppressed with a
@SuppressWarnings("resource")
annotation or disabled within the static code analyzer.This will be fixed with the next major release.
The text was updated successfully, but these errors were encountered: