helpers: Remove unused code
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 15 Jan 2022 20:04:37 +0000 (21:04 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 16 Jan 2022 16:12:56 +0000 (17:12 +0100)
helpers/content.go
helpers/general.go
helpers/path.go

index 080e31909df45361f2ca8e5c181570c0b5477724..157f75079ec2f30a9a8050c7f9ca8180e13fff1b 100644 (file)
@@ -37,9 +37,6 @@ import (
        "github.com/gohugoio/hugo/config"
 )
 
-// SummaryDivider denotes where content summarization should end. The default is "<!--more-->".
-var SummaryDivider = []byte("<!--more-->")
-
 var (
        openingPTag        = []byte("<p>")
        closingPTag        = []byte("</p>")
index 73b7aff660403347198114269659e8b20531c777..236a763fa91f94dc4f5a96a85732d64ed5c5520b 100644 (file)
@@ -258,12 +258,6 @@ func compareStringSlices(a, b []string) bool {
        return true
 }
 
-// LogPrinter is the common interface of the JWWs loggers.
-type LogPrinter interface {
-       // Println is the only common method that works in all of JWWs loggers.
-       Println(a ...interface{})
-}
-
 // DistinctLogger ignores duplicate log statements.
 type DistinctLogger struct {
        loggers.Logger
index b504f5251dc1b31b8cd3a1c84035b86f6a72bf29..a40e0f8ff37cc39d3a453f5205d1fa5ed0903bc9 100644 (file)
@@ -35,9 +35,6 @@ import (
        "github.com/spf13/afero"
 )
 
-// ErrThemeUndefined is returned when a theme has not be defined by the user.
-var ErrThemeUndefined = errors.New("no theme set")
-
 // MakePath takes a string with any characters and replace it
 // so the string could be used in a path.
 // It does so by creating a Unicode-sanitized string, with the spaces replaced,
@@ -456,16 +453,6 @@ func IsEmpty(path string, fs afero.Fs) (bool, error) {
        return afero.IsEmpty(fs, path)
 }
 
-// FileContains checks if a file contains a specified string.
-func FileContains(filename string, subslice []byte, fs afero.Fs) (bool, error) {
-       return afero.FileContainsBytes(fs, filename, subslice)
-}
-
-// FileContainsAny checks if a file contains any of the specified strings.
-func FileContainsAny(filename string, subslices [][]byte, fs afero.Fs) (bool, error) {
-       return afero.FileContainsAnyBytes(fs, filename, subslices)
-}
-
 // Exists checks if a file or directory exists.
 func Exists(path string, fs afero.Fs) (bool, error) {
        return afero.Exists(fs, path)