This commit is contained in:
egzosn
2020-11-13 22:29:47 +08:00
parent a3f5fe8016
commit 012b71739d
18 changed files with 48 additions and 49 deletions

View File

@@ -451,7 +451,7 @@ public class Util {
* @param algorism 十进制的数字
* @return String 对应的十六进制字符串
*/
public static String algorismToHEXString(int algorism) {
public static String algorismToHexString(int algorism) {
String result = "";
result = Integer.toHexString(algorism);