优化回调
This commit is contained in:
@@ -33,11 +33,9 @@ public class DigesdateUtils {
|
||||
String stmpHex;
|
||||
for (int n = 0; byteArrayData != null && n < byteArrayData.length; n++) {
|
||||
stmpHex = Integer.toHexString(byteArrayData[n] & 0XFF);
|
||||
if (stmpHex.length() == 1){
|
||||
if (stmpHex.length() == 1)
|
||||
hashBuilder.append('0');
|
||||
}else {
|
||||
hashBuilder.append(stmpHex);
|
||||
}
|
||||
hashBuilder.append(stmpHex);
|
||||
}
|
||||
return hashBuilder.toString();
|
||||
}
|
||||
@@ -45,7 +43,4 @@ public class DigesdateUtils {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user