From b5d79bdccc8da4e5426de2de5426a531483271d9 Mon Sep 17 00:00:00 2001 From: Abiola Ibrahim Date: Wed, 5 Aug 2015 01:00:53 +0100 Subject: [PATCH] Markdown: Removed unused constant. --- middleware/markdown/watcher.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/middleware/markdown/watcher.go b/middleware/markdown/watcher.go index b0b4d1aa..fcf1d36e 100644 --- a/middleware/markdown/watcher.go +++ b/middleware/markdown/watcher.go @@ -2,10 +2,7 @@ package markdown import "time" -const ( - DefaultInterval = time.Second * 60 - DevInterval = time.Second * 1 -) +const DefaultInterval = time.Second * 60 // Watch monitors the configured markdown directory for changes. It calls GenerateLinks // when there are changes.