fix typo
Reviewed-by: sheng
This commit is contained in:
Edison Su 2012-05-29 17:12:17 -07:00
parent a9d1d13878
commit 402ee953b2
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ public class DownloadManagerImpl implements DownloadManager {
}
byte[] md5sum = digest.digest();
BigInteger bigInt = new BigInteger(1, md5sum);
checksum = String.format("%032x",bigInt.toString(16));
checksum = String.format("%032x",bigInt);
return checksum;
}catch(IOException e) {
return null;