summaryrefslogtreecommitdiff
path: root/href.go
diff options
context:
space:
mode:
Diffstat (limited to 'href.go')
-rw-r--r--href.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/href.go b/href.go
index 44a6efb..811a963 100644
--- a/href.go
+++ b/href.go
@@ -3,7 +3,6 @@ package main
import (
"net/http"
"strings"
- "fmt"
"golang.org/x/net/html"
)
@@ -46,11 +45,3 @@ func FetchTitle(url string) (string, error) {
return title, nil
}
-
-func showLinks() (s string) {
- for k, v := range cache {
- s += fmt.Sprintf("%v (%v) ", k, v)
- }
- return
-
-}