aboutsummaryrefslogtreecommitdiffstats
path: root/client/src/main/java/ai/vespa/client/dsl/Text.java
blob: 1ed88379e304b85f16e3a4b0ae671a257f6ce6e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.client.dsl;

import java.util.Locale;

/**
 * Text utility functions.
 *
 * @author arnej
 */
final class Text {

    public static String format(String format, Object... args) {
        return String.format(Locale.US, format, args);
    }

}