Removing block size from donut writer, no longer necessary

This commit is contained in:
Frederick F. Kautz IV
2015-03-17 14:24:59 -07:00
parent 639f542ac9
commit d6be8d3517
4 changed files with 8 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ type DonutBox interface {
SetBucketMetadata(bucket string, metadata map[string]string) error
// object operations
GetObjectWriter(bucket, object string, column, blockSize uint) (*NewObject, error)
GetObjectWriter(bucket, object string, column uint) (*NewObject, error)
GetObjectReader(bucket, object string, column uint) (io.Reader, error)
GetObjectMetadata(bucket, object string, column uint) (map[string]string, error)
}