Skip to content

Commit

Permalink
Updates call to match new Datastream.setContent method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Edwin Shin committed Jul 4, 2013
1 parent 5a20a03 commit 4ed6b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/fcrepo/webdav/FedoraContentMapper.java
Expand Up @@ -244,7 +244,7 @@ public long setContent(Node parentNode, String resourceName,

Datastream ds = new Datastream(parentNode);
try {
ds.setContent(newContent, contentType, null, null, null);
ds.setContent(newContent, contentType, null, null);
} catch (InvalidChecksumException e) {
throw new RepositoryException(e.getMessage(), e);
}
Expand Down

0 comments on commit 4ed6b27

Please sign in to comment.