aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/application/MetricNullProvider.java
blob: 3dd3a4b8fc992625dc424d2073906330eac24fca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. 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;
    }
}