remove int cast from register method

git-svn-id: http://scm.dspace.org/svn/repo/trunk@1553 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Scott Yeadon
2006-07-13 04:14:32 +00:00
parent ed739f26ff
commit ac7a4f6594

View File

@@ -499,7 +499,7 @@ public class BitstreamStorageManager
}
bitstream.setColumn("checksum_algorithm", "MD5");
bitstream.setColumn("size_bytes", (int) file.length());
bitstream.setColumn("size_bytes", file.length());
bitstream.setColumn("deleted", false);
DatabaseManager.update(context, bitstream);