mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8322782: Clean up usages of unnecessary fully qualified class name "java.util.Arrays"
Reviewed-by: alanb, aivanov
This commit is contained in:
parent
4db7a1c3bb
commit
1369c545ac
9 changed files with 29 additions and 29 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2009, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2009, 2024, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -204,7 +204,7 @@ public class FtpClient extends sun.net.ftp.FtpClient {
|
|||
47, 63, 58, 64, 38, 61, 43, 36, 44};
|
||||
|
||||
byte[] b = chkS.getBytes(encoding);
|
||||
return java.util.Arrays.equals(b, chkB);
|
||||
return Arrays.equals(b, chkB);
|
||||
}
|
||||
|
||||
private class DefaultParser implements FtpDirParser {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue