Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
remove the exitance check
Browse files Browse the repository at this point in the history
  • Loading branch information
BuzzTroll committed Nov 6, 2010
1 parent 3b50199 commit 5e97ddc
Showing 1 changed file with 1 addition and 5 deletions.
Expand Up @@ -471,11 +471,7 @@ public void unpropagationFinished(
datakey = authDB.getDataKey(fileIds[1]);
expectedSize = authDB.getFileSize(fileIds[1]);
}
File f = new File(datakey);
if(!f.exists())
{
throw new WorkspaceException("The unpropagated file does not exist " + publicName);
}
File f = new File(datakey);
long size = f.length();
long sizeDiff = size - expectedSize;

Expand Down

0 comments on commit 5e97ddc

Please sign in to comment.