Skip to content

Commit

Permalink
helpers: Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Jan 16, 2022
1 parent 20a7ce7 commit 55a9bc1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 22 deletions.
3 changes: 0 additions & 3 deletions helpers/content.go
Original file line number Diff line number Diff line change
Expand Up @@ -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>")
Expand Down
6 changes: 0 additions & 6 deletions helpers/general.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 0 additions & 13 deletions helpers/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 55a9bc1

Please sign in to comment.