Skip to content

Commit e3a18fa

Browse files
committed
8322772: Clean up code after JDK-8322417
Backport-of: bfd23aeae1566b86c20bdcbecff58f216947612a
1 parent 58b154e commit e3a18fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java.base/share/classes/java/io/Console.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public char[] readPassword(String fmt, Object ... args) {
335335
ioe.addSuppressed(x);
336336
}
337337
if (ioe != null) {
338-
java.util.Arrays.fill(passwd, ' ');
338+
Arrays.fill(passwd, ' ');
339339
try {
340340
if (reader instanceof LineReader) {
341341
LineReader lr = (LineReader)reader;

0 commit comments

Comments
 (0)