changeset 1690:b51673c1e604

Removed unused error.
author Sascha L. Teichmann <teichmann@intevation.de>
date Sun, 30 Dec 2018 15:14:29 +0100
parents 6caf5cd6249e
children de09bd3b5c05
files pkg/scheduler/scheduler.go
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/scheduler/scheduler.go	Sun Dec 30 14:39:46 2018 +0100
+++ b/pkg/scheduler/scheduler.go	Sun Dec 30 15:14:29 2018 +0100
@@ -14,16 +14,12 @@
 package scheduler
 
 import (
-	"errors"
 	"log"
 	"sync"
 
 	"github.com/robfig/cron"
 )
 
-// ErrNoSuchAction if no fitting action was found.
-var ErrNoSuchAction = errors.New("No such action")
-
 // Action is called with a configuration id.
 type Action func(cfgID int64)