8322782: Clean up usages of unnecessary fully qualified class name "java.util.Arrays"

Reviewed-by: alanb, aivanov
This commit is contained in:
Matthias Baesken 2024-01-04 08:06:14 +00:00
parent 4db7a1c3bb
commit 1369c545ac
9 changed files with 29 additions and 29 deletions

View file

@ -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 {