commands: Delete unused newUserErrorF

This commit is contained in:
bogem 2016-08-30 22:20:21 +05:00 committed by Bjørn Erik Pedersen
parent 5867cb5a92
commit 1e18087356
1 changed files with 0 additions and 4 deletions

View File

@ -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}
}