Snippet Preview
Snippet HTML Code
1
package org.slf4j.impl;
2
3
import org.slf4j.helpers.NOPMDCAdapter;
4
import org.slf4j.spi.MDCAdapter;
org.slf4j.helpers.NOPMDCAdapter
8
9
public class StaticMDCBinder {
13
14
public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
15
16
private StaticMDCBinder() {
17
}
StaticMDCBinder
22
23
public MDCAdapter getMDCA() {
24
return new NOPMDCAdapter();
25
26
27
public String getMDCAdapterClassStr() {
28
return NOPMDCAdapter.class.getName();
29
30