Remove unused function

Signed-off-by: Tobias Guggenmos <tguggenm@redhat.com>
This commit is contained in:
Tobias Guggenmos 2020-02-03 20:53:48 +01:00
parent 43d206f0a1
commit b93845d6bf

View file

@ -920,12 +920,6 @@ var FunctionCalls = map[string]FunctionCall{
"year": funcYear,
}
// getFunction returns a predefined Function object for the given name.
func getFunctionCall(name string) (FunctionCall, bool) {
function, ok := FunctionCalls[name]
return function, ok
}
type vectorByValueHeap Vector
func (s vectorByValueHeap) Len() int {