Merge pull request #3027 from foosinn/ossfix-memoize
fix oss build: wrong type for Memoize parameter and return value
This commit is contained in:
commit
48e34aae32
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue