mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
commands: Delete unused newUserErrorF
This commit is contained in:
parent
5867cb5a92
commit
1e18087356
1 changed files with 0 additions and 4 deletions
|
@ -79,10 +79,6 @@ func newUserError(a ...interface{}) commandError {
|
|||
return commandError{s: fmt.Sprintln(a...), userError: true}
|
||||
}
|
||||
|
||||
func newUserErrorF(format string, a ...interface{}) commandError {
|
||||
return commandError{s: fmt.Sprintf(format, a...), userError: true}
|
||||
}
|
||||
|
||||
func newSystemError(a ...interface{}) commandError {
|
||||
return commandError{s: fmt.Sprintln(a...), userError: false}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue