1
0

Use the more modern, compact, and flexible Javadoc "{@code ...}" instead of the HTML "<tt>...</tt>".

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1612041 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory
2014-07-20 06:54:48 +00:00
parent f8ffbb37ac
commit d51ef65456

View File

@@ -182,13 +182,13 @@ public class LogSource {
* Create a new {@link Log} implementation, based on the given <i>name</i>. * Create a new {@link Log} implementation, based on the given <i>name</i>.
* <p> * <p>
* The specific {@link Log} implementation returned is determined by the * The specific {@link Log} implementation returned is determined by the
* value of the <tt>org.apache.commons.logging.log</tt> property. The value * value of the {@code org.apache.commons.logging.log} property. The value
* of <tt>org.apache.commons.logging.log</tt> may be set to the fully specified * of {@code org.apache.commons.logging.log} may be set to the fully specified
* name of a class that implements the {@link Log} interface. This class must * name of a class that implements the {@link Log} interface. This class must
* also have a public constructor that takes a single {@link String} argument * also have a public constructor that takes a single {@link String} argument
* (containing the <i>name</i> of the {@link Log} to be constructed. * (containing the <i>name</i> of the {@link Log} to be constructed.
* <p> * <p>
* When <tt>org.apache.commons.logging.log</tt> is not set, or when no corresponding * When {@code org.apache.commons.logging.log} is not set, or when no corresponding
* class can be found, this method will return a Log4JLogger if the log4j Logger * class can be found, this method will return a Log4JLogger if the log4j Logger
* class is available in the {@link LogSource}'s classpath, or a Jdk14Logger if we * class is available in the {@link LogSource}'s classpath, or a Jdk14Logger if we
* are on a JDK 1.4 or later system, or NoOpLog if neither of the above conditions is true. * are on a JDK 1.4 or later system, or NoOpLog if neither of the above conditions is true.