1
0
mirror of https://github.com/google/nomulus synced 2026-01-09 15:43:52 +00:00

Remove unused singular DNS queue deleteTask method

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=197981823
This commit is contained in:
mcilwain
2018-05-24 17:30:30 -07:00
committed by jianglai
parent 8f456bcf64
commit 373b4feeb1

View File

@@ -171,15 +171,6 @@ public class DnsQueue {
}
}
/** Delete the task, removing it from the queue permanently. */
public void deleteTask(TaskHandle task) {
try {
queue.deleteTask(task);
} catch (TransientFailureException | DeadlineExceededException e) {
logger.severe(e, "Failed deleting tasks too fast");
}
}
/** Delete a list of tasks, removing them from the queue permanently. */
public void deleteTasks(List<TaskHandle> tasks) {
try {