cleanup: Remove unecessary packages and tests. Simplify.

This commit is contained in:
Harshavardhana
2016-03-11 19:47:44 -08:00
parent 3d8b9afa8f
commit 5282a79eda
7 changed files with 7 additions and 657 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ func (fs Filesystem) ListObjects(bucket, prefix, marker, delimiter string, maxKe
bucket = fs.denormalizeBucket(bucket)
if status, err := IsDirExist(filepath.Join(fs.path, bucket)); !status {
if status, err := isDirExist(filepath.Join(fs.path, bucket)); !status {
if err == nil {
return result, probe.NewError(BucketNotFound{Bucket: bucket})
} else if os.IsNotExist(err) {