1
0

Fix Javadoc warnings

This commit is contained in:
Gary Gregory
2024-05-11 11:08:11 -04:00
parent 1724a5b6c5
commit e8a3587ac6
3 changed files with 21 additions and 0 deletions

View File

@@ -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);

View File

@@ -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

View File

@@ -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);