| Index: go/src/infra/gae/libs/gae/memory/gkvlite_utils.go
|
| diff --git a/go/src/infra/gae/libs/gae/memory/gkvlite_utils.go b/go/src/infra/gae/libs/gae/memory/gkvlite_utils.go
|
| index 08b2b9b075ecfd5b73c37922d59e293cfb300d83..ac64f9b7d7905f1233459120d4231e7e3671b309 100644
|
| --- a/go/src/infra/gae/libs/gae/memory/gkvlite_utils.go
|
| +++ b/go/src/infra/gae/libs/gae/memory/gkvlite_utils.go
|
| @@ -95,14 +95,6 @@ func (ms *memStore) SetCollection(name string, cmp gkvlite.KeyCompare) *memColle
|
| return (*memCollection)((*gkvlite.Store)(ms).SetCollection(name, cmp))
|
| }
|
|
|
| -func (ms *memStore) RemoveCollection(name string) {
|
| - (*gkvlite.Store)(ms).RemoveCollection(name)
|
| -}
|
| -
|
| -func (ms *memStore) GetCollectionNames() []string {
|
| - return (*gkvlite.Store)(ms).GetCollectionNames()
|
| -}
|
| -
|
| // memCollection is a gkvlite.Collection which will panic for anything which
|
| // might otherwise return an error.
|
| //
|
|
|