| Index: service/taskqueue/interface.go
|
| diff --git a/service/taskqueue/interface.go b/service/taskqueue/interface.go
|
| index b7ff6b4fc2b9beecfeedb798f54ca6d0412ab077..becbb2a9061c5df7bd9a56a2dc4e7f7fc442439b 100644
|
| --- a/service/taskqueue/interface.go
|
| +++ b/service/taskqueue/interface.go
|
| @@ -6,11 +6,6 @@ package taskqueue
|
|
|
| // Interface is the full interface to the Task Queue service.
|
| type Interface interface {
|
| - // NewTask simply creates a new Task object with the Path field populated.
|
| - // The path parameter may be blank, if you want to use the default task path
|
| - // ("/_ah/queue/<queuename>").
|
| - NewTask(path string) *Task
|
| -
|
| Add(task *Task, queueName string) error
|
| Delete(task *Task, queueName string) error
|
|
|
|
|