Merge pull request #5755 from TimeIncOSS/remove-notfound-err-helper

helper/resource: Remove NewNotFoundError function
This commit is contained in:
Radek Simko 2016-03-21 16:55:41 +00:00
commit b6e3788ad0
1 changed files with 0 additions and 4 deletions

View File

@ -15,7 +15,3 @@ func (e *NotFoundError) Error() string {
return "couldn't find resource"
}
func NewNotFoundError(err string) *NotFoundError {
return &NotFoundError{Message: err}
}