Skip to content

Commit

Permalink
8322772: Clean up code after JDK-8322417
Browse files Browse the repository at this point in the history
Reviewed-by: mdoerr, goetz, mbaesken, vtewari
  • Loading branch information
RealCLanger committed Dec 29, 2023
1 parent 19147f3 commit 32d80e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public char[] readPassword(String fmt, Object ... args) {
ioe.addSuppressed(x);
}
if (ioe != null) {
java.util.Arrays.fill(passwd, ' ');
Arrays.fill(passwd, ' ');
try {
if (reader instanceof LineReader lr) {
lr.zeroOut();
Expand Down

3 comments on commit 32d80e2

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RealCLanger
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk21u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 32d80e2 Dec 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RealCLanger the backport was successfully created on the branch backport-RealCLanger-32d80e2c in my personal fork of openjdk/jdk21u-dev. To create a pull request with this backport targeting openjdk/jdk21u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 32d80e2c from the openjdk/jdk repository.

The commit being backported was authored by Christoph Langer on 29 Dec 2023 and was reviewed by Martin Doerr, Goetz Lindenmaier, Matthias Baesken and Vyom Tewari.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u-dev:

$ git fetch https://github.com/openjdk-bots/jdk21u-dev.git backport-RealCLanger-32d80e2c:backport-RealCLanger-32d80e2c
$ git checkout backport-RealCLanger-32d80e2c
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk21u-dev.git backport-RealCLanger-32d80e2c

Please sign in to comment.