Skip to content
New issue

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

Deprecated Base64Utils causing warning #9

Closed
pmpurifoy opened this issue Oct 1, 2023 · 1 comment
Closed

Deprecated Base64Utils causing warning #9

pmpurifoy opened this issue Oct 1, 2023 · 1 comment

Comments

@pmpurifoy
Copy link

Steps for repro:
-run gradlew compileJava
-view warning
D:\POSSUM\src\main\java\com\target\devicemanager\components\printer\PrinterDevice.java:278: warning: [removal] Base64Utils in org.springframework.util has been deprecated and marked for removal
Base64Utils.decodeFromString(content.data),
^
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 warning

Docs mention warning using Base64Utils: https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/util/Base64Utils.html

Fix:
Use java.util.Base64
https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Base64.Decoder.html#decode(java.lang.String)

From:
Base64Utils.decodeFromString(content.data)

src\main\java\com\target\devicemanager\components\printer\PrinterDevice.java line 278

To:
Base64.getDecoder().decode(content.data)

I verified this fixes the issue locally, but no write access so I can't publish PR.

@pmpurifoy pmpurifoy changed the title Deprecated Base64 decoder causing warning Deprecated Base64Utils causing warning Oct 1, 2023
@rrenkor
Copy link
Collaborator

rrenkor commented Oct 18, 2023

This issue has been resolved with PR #14.
Thank you @pmpurifoy for the issue finding and resolution!

@rrenkor rrenkor closed this as completed Oct 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants