jglick commented on a change in pull request #94: URL: https://github.com/apache/jclouds/pull/94#discussion_r651256380
########## File path: blobstore/src/main/java/org/jclouds/blobstore/LocalStorageStrategy.java ########## @@ -114,14 +114,18 @@ */ Blob getBlob(String containerName, String blobName); + @Deprecated + String putBlob(String containerName, Blob blob) throws IOException; Review comment: Should this not have been ```java default String putBlob(String containerName, Blob blob) throws IOException { return putBlob(containerName, blob, BlobAccess.PRIVATE); } ``` ? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org