We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Forthcoming JDK 18 deprecates finalization for removal, see JEP 421 for details.
EchoSVG uses finalization in two places:
echosvg/echosvg-bridge/src/main/java/io/sf/carte/echosvg/bridge/BridgeContext.java
Line 311 in 298d49e
echosvg/echosvg-transcoder/src/main/java/io/sf/carte/echosvg/ext/awt/image/codec/util/SeekableStream.java
Line 980 in 298d49e
and the code should be changed so the finalize() can be removed in favor of a more modern construct.
finalize()
The text was updated successfully, but these errors were encountered:
transcoder: remove finalize() method from SeekableStream. See #38
270cdf1
bridge: rename finalize() to close(), implement Closeable in BridgeCo…
95c8bea
…ntext See #38.
After 95c8bea there are no more finalize() methods. Closing.
Sorry, something went wrong.
carlosame
No branches or pull requests
Forthcoming JDK 18 deprecates finalization for removal, see JEP 421 for details.
EchoSVG uses finalization in two places:
echosvg/echosvg-bridge/src/main/java/io/sf/carte/echosvg/bridge/BridgeContext.java
Line 311 in 298d49e
echosvg/echosvg-transcoder/src/main/java/io/sf/carte/echosvg/ext/awt/image/codec/util/SeekableStream.java
Line 980 in 298d49e
and the code should be changed so the
finalize()
can be removed in favor of a more modern construct.The text was updated successfully, but these errors were encountered: