aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/application/MetricNullProvider.java
blob: 5e1debccd12b6fbb82e3b25e5bc3107cb4a4a06f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.application;

import com.google.inject.Provider;

/**
 * @author Simon Thoresen Hult
 */
class MetricNullProvider implements Provider<MetricConsumer> {

    @Override
    public MetricConsumer get() {
        return null;
    }
}