fix oss build: wrong type for Memoize parameter and return value

This commit is contained in:
Stefan Schwarz 2020-10-08 17:38:24 +02:00
parent 8c0dbfdd87
commit 8f32f44f9e

View file

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