Remove contenttype pseudo func()

This commit is contained in:
Harshavardhana 2015-03-17 00:47:15 -07:00
parent 4770f611e0
commit dccf32e5c4

View file

@ -331,18 +331,11 @@ func (diskStorage StorageDriver) CreateObject(bucketKey string, objectKey string
}
// close connections
contenttype := func(contenttype string) string {
if len(contenttype) == 0 {
return "application/octet-stream"
}
return strings.TrimSpace(contenttype)
}
metadataObj := storage.ObjectMetadata{
Bucket: bucketKey,
Key: objectKey,
ContentType: contenttype(contentType),
ContentType: contentType,
Created: time.Now(),
Md5: hex.EncodeToString(hasher.Sum(nil)),
Size: int64(totalLength),