summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/minio/minio-go/api-get-object-file.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/minio/minio-go/api-get-object-file.go')
-rw-r--r--vendor/github.com/minio/minio-go/api-get-object-file.go13
1 files changed, 1 insertions, 12 deletions
diff --git a/vendor/github.com/minio/minio-go/api-get-object-file.go b/vendor/github.com/minio/minio-go/api-get-object-file.go
index 2b58220a6..a852220a2 100644
--- a/vendor/github.com/minio/minio-go/api-get-object-file.go
+++ b/vendor/github.com/minio/minio-go/api-get-object-file.go
@@ -18,14 +18,11 @@
package minio
import (
+ "context"
"io"
"os"
"path/filepath"
- "github.com/minio/minio-go/pkg/encrypt"
-
- "context"
-
"github.com/minio/minio-go/pkg/s3utils"
)
@@ -40,14 +37,6 @@ func (c Client) FGetObject(bucketName, objectName, filePath string, opts GetObje
return c.fGetObjectWithContext(context.Background(), bucketName, objectName, filePath, opts)
}
-// FGetEncryptedObject - Decrypt and store an object at filePath.
-func (c Client) FGetEncryptedObject(bucketName, objectName, filePath string, materials encrypt.Materials) error {
- if materials == nil {
- return ErrInvalidArgument("Unable to recognize empty encryption properties")
- }
- return c.FGetObject(bucketName, objectName, filePath, GetObjectOptions{Materials: materials})
-}
-
// fGetObjectWithContext - fgetObject wrapper function with context
func (c Client) fGetObjectWithContext(ctx context.Context, bucketName, objectName, filePath string, opts GetObjectOptions) error {
// Input validation.