From 18ae791748217cbfd9a1a97b4d95dc40fafa59bb Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 13 Sep 2016 10:41:29 -0400 Subject: [PATCH] walker: golint since this package was not even implemented yet, then make it not public Signed-off-by: Vincent Batts --- walker/walker.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/walker/walker.go b/walker/walker.go index bd34869..4c3c9fb 100644 --- a/walker/walker.go +++ b/walker/walker.go @@ -1,14 +1,15 @@ +// Package walker is a work-in-progress package walker import ( "github.com/vbatts/dedupe-linker/base" ) -type Walker struct { +type walker struct { Base *base.Base } -func (w Walker) Walk(path string, quit chan int) error { +func (w walker) Walk(path string, quit chan int) error { // XXX what is going on here? select { case <-quit: