aboutsummaryrefslogtreecommitdiffstats
path: root/client/src/main/java/ai/vespa/client/dsl/Text.java
blob: 359e82d1bb4de2fd23f50da34d6e80ddbc368ddf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. 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);
    }

}