aboutsummaryrefslogtreecommitdiff
path: root/bulk.go
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2018-05-30 14:57:29 +0200
committerStefan Majewsky <majewsky@gmx.net>2018-05-30 14:57:29 +0200
commit81732006cfe081371d8a67e47408d4eae7542179 (patch)
treef5e24ea9ed935f2a9fe4cec10930273fd47d03b3 /bulk.go
parentbb7eb0faacb77436a492d4b9b9775f2771a546d7 (diff)
downloadgo-schwift-81732006cfe081371d8a67e47408d4eae7542179.tar.gz
make the IsEqualTo() methods public
Diffstat (limited to 'bulk.go')
-rw-r--r--bulk.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bulk.go b/bulk.go
index 5d6304b..a160652 100644
--- a/bulk.go
+++ b/bulk.go
@@ -145,12 +145,12 @@ func makeBulkObjectError(fullName string, statusCode int) BulkObjectError {
func (a *Account) BulkDelete(objects []*Object, containers []*Container, opts *RequestOptions) (numDeleted int, numNotFound int, deleteError error) {
//validate that all given objects are in this account
for _, obj := range objects {
- if !a.isEqualTo(obj.Container().Account()) {
+ if !a.IsEqualTo(obj.Container().Account()) {
return 0, 0, ErrAccountMismatch
}
}
for _, container := range containers {
- if !a.isEqualTo(container.Account()) {
+ if !a.IsEqualTo(container.Account()) {
return 0, 0, ErrAccountMismatch
}
}