Fix Javadoc warnings
This commit is contained in:
@@ -183,6 +183,13 @@ public final class Log4jApiLogFactory extends LogFactory {
|
|||||||
|
|
||||||
private final ConcurrentMap<String, Object> attributes = new ConcurrentHashMap<>();
|
private final ConcurrentMap<String, Object> attributes = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new instance.
|
||||||
|
*/
|
||||||
|
public Log4jApiLogFactory() {
|
||||||
|
// empty
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object getAttribute(final String name) {
|
public Object getAttribute(final String name) {
|
||||||
return attributes.get(name);
|
return attributes.get(name);
|
||||||
|
|||||||
@@ -50,6 +50,13 @@ public class ServletContextCleaner implements ServletContextListener {
|
|||||||
|
|
||||||
private static final Class<?>[] RELEASE_SIGNATURE = { ClassLoader.class };
|
private static final Class<?>[] RELEASE_SIGNATURE = { ClassLoader.class };
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new instance.
|
||||||
|
*/
|
||||||
|
public ServletContextCleaner() {
|
||||||
|
// empty
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invoked when a webapp is undeployed, this tells the LogFactory
|
* Invoked when a webapp is undeployed, this tells the LogFactory
|
||||||
* class to release any logging information related to the current
|
* class to release any logging information related to the current
|
||||||
|
|||||||
@@ -266,6 +266,13 @@ public final class Slf4jLogFactory extends LogFactory {
|
|||||||
|
|
||||||
private final ConcurrentMap<String, Object> attributes = new ConcurrentHashMap<>();
|
private final ConcurrentMap<String, Object> attributes = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new instance.
|
||||||
|
*/
|
||||||
|
public Slf4jLogFactory() {
|
||||||
|
// empty
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object getAttribute(final String name) {
|
public Object getAttribute(final String name) {
|
||||||
return attributes.get(name);
|
return attributes.get(name);
|
||||||
|
|||||||
Reference in New Issue
Block a user