aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/ranking/NormalizerSetup.java
blob: 6e93a73b6ed0fd46b890687b010e8d2addc6e17f (plain) (blame)
1
2
3
4
5
6
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.ranking;

import java.util.function.Supplier;

record NormalizerSetup(String name, Supplier<Normalizer> supplier, FunEvalCtx evalCtx) {}