[DS-3895] Rename Bitstream.getSize() to getSizeBytes().

This commit is contained in:
Mark H. Wood
2018-04-23 13:29:31 -04:00
parent 49185db7e9
commit 24575d8ba1
26 changed files with 76 additions and 72 deletions

View File

@@ -233,7 +233,7 @@ public class InstallItemServiceImpl implements InstallItemService {
// Add sizes and checksums of bitstreams
for (Bitstream bitstream : bitstreams) {
myMessage.append(bitstream.getName()).append(": ")
.append(bitstream.getSize()).append(" bytes, checksum: ")
.append(bitstream.getSizeBytes()).append(" bytes, checksum: ")
.append(bitstream.getChecksum()).append(" (")
.append(bitstream.getChecksumAlgorithm()).append(")\n");
}