Skip to content

Commit

Permalink
Non-functional modification
Browse files Browse the repository at this point in the history
- Fix checkstyle error
  • Loading branch information
Andrew Woods committed Aug 7, 2014
1 parent 2e16f82 commit c2e17e7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -73,7 +73,7 @@ public DatastreamImpl(final Node n) throws ResourceTypeException {
if (node.isNew()) {
initializeNewDatastreamProperties();
} else if (!hasMixin(node) && !isFrozen.apply(n)) {
throw new ResourceTypeException("Attempting to perform a datastream operation on a non-datastream resource!");
throw new ResourceTypeException("Attempting to perform a datastream operation on non-datastream resource!");
}
}

Expand All @@ -91,7 +91,7 @@ public DatastreamImpl(final Session session, final String path, final String nod
if (node.isNew()) {
initializeNewDatastreamProperties();
} else if (!hasMixin(node) && !isFrozen.apply(node)) {
throw new ResourceTypeException("Attempting to perform a datastream operation on a non-datastream resource!");
throw new ResourceTypeException("Attempting to perform a datastream operation on non-datastream resource!");
}
}

Expand Down

0 comments on commit c2e17e7

Please sign in to comment.