| Index: impl/dummy/dummy.go | 
| diff --git a/impl/dummy/dummy.go b/impl/dummy/dummy.go | 
| index 64696c0347a2f270ca9cb35044e0410b972e82d9..a11518c30ebf75605097f6cd0b36d5b2ef96b753 100644 | 
| --- a/impl/dummy/dummy.go | 
| +++ b/impl/dummy/dummy.go | 
| @@ -73,12 +73,8 @@ func ni() error { | 
|  | 
| type ds struct{} | 
|  | 
| -func (ds) AllocateIDs(*datastore.Key, int) (int64, error) { | 
| -	panic(ni()) | 
| -} | 
| -func (ds) PutMulti([]*datastore.Key, []datastore.PropertyMap, datastore.PutMultiCB) error { | 
| -	panic(ni()) | 
| -} | 
| +func (ds) AllocateIDs([]*datastore.Key, datastore.NewKeyCB) error                       { panic(ni()) } | 
| +func (ds) PutMulti([]*datastore.Key, []datastore.PropertyMap, datastore.NewKeyCB) error { panic(ni()) } | 
| func (ds) GetMulti([]*datastore.Key, datastore.MultiMetaGetter, datastore.GetMultiCB) error { | 
| panic(ni()) | 
| } | 
|  |