Delete some stuff

This commit is contained in:
Felix Geisendörfer 2013-05-08 11:30:26 +02:00
parent af14655d94
commit 9deaf0fa5a
1 changed files with 1 additions and 3 deletions

View File

@ -34,9 +34,7 @@ func (s *DataStore) CreateFile(id string, size int64, meta map[string]string) er
// @TODO Refactor DataStore to support meta argument properly. Needs to be
// defined in tus protocol first.
entry := logEntry{Meta: &metaEntry{
Size: size,
ContentType: "",
ContentDisposition: "",
Size: size,
}}
return s.appendFileLog(id, entry)
}