This commit is contained in:
Looly 2024-03-20 11:59:40 +08:00
parent 37f24b38ec
commit 1b3af6163c

View File

@ -261,6 +261,7 @@ public class Base64 {
* @return 解码后的bytes
*/
public static byte[] decode(final byte[] in) {
//return java.util.Base64.getDecoder().decode(in);
return Base64Decoder.INSTANCE.decode(in);
}