Skip to content
Snippets Groups Projects
Commit 90238b80 authored by ribeaudc's avatar ribeaudc
Browse files

1/ Private constructor added.

2/ Class made final.

SVN: 214
parent 3acf86e8
No related branches found
No related tags found
No related merge requests found
...@@ -23,9 +23,13 @@ import org.apache.log4j.Logger; ...@@ -23,9 +23,13 @@ import org.apache.log4j.Logger;
* *
* @author Bernd Rinn * @author Bernd Rinn
*/ */
public class LogFactory public final class LogFactory
{ {
private LogFactory() {
// Can not be instantiated.
}
/** /**
* @return The logger name for the given {@link LogCategory} and {@link Class}. It will contain the name of the * @return The logger name for the given {@link LogCategory} and {@link Class}. It will contain the name of the
* <var>category</var>, followed by the canonical name of <var>clazz</var>. * <var>category</var>, followed by the canonical name of <var>clazz</var>.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment