Merge pull request #3027 from foosinn/ossfix-memoize

fix oss build: wrong type for Memoize parameter and return value
This commit is contained in:
Brad Rydzewski 2020-10-10 11:03:27 -04:00 committed by GitHub
commit 48e34aae32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,6 +24,6 @@ import (
// This micro-optimization is intended for multi-pipeline // This micro-optimization is intended for multi-pipeline
// projects that would otherwise covert the file for each // projects that would otherwise covert the file for each
// pipeline execution. // pipeline execution.
func Memoize(base core.ConvertService) core.ConvertService { func Memoize(base core.ConfigService) core.ConfigService {
return new(noop) return new(noop)
} }