You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/04/06 17:20:24 UTC

svn commit: r1089489 - /commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/log/SimpleLog.java

Author: sebb
Date: Wed Apr  6 15:20:24 2011
New Revision: 1089489

URL: http://svn.apache.org/viewvc?rev=1089489&view=rev
Log:
Javadoc fix

Modified:
    commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/log/SimpleLog.java

Modified: commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/log/SimpleLog.java
URL: http://svn.apache.org/viewvc/commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/log/SimpleLog.java?rev=1089489&r1=1089488&r2=1089489&view=diff
==============================================================================
--- commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/log/SimpleLog.java (original)
+++ commons/proper/discovery/trunk/src/java/org/apache/commons/discovery/log/SimpleLog.java Wed Apr  6 15:20:24 2011
@@ -393,7 +393,7 @@ public class SimpleLog implements Log {
      * concatenation to be avoided when the message will be ignored by the
      * logger. </p>
      *
-     * @return true, if the {@link SimpleLog.LOG_LEVEL_DEBUG} is enabled, false otherwise
+     * @return true, if the {@link SimpleLog#LOG_LEVEL_DEBUG} is enabled, false otherwise
      */
     public final boolean isDebugEnabled() {
         return isLevelEnabled(SimpleLog.LOG_LEVEL_DEBUG);
@@ -406,7 +406,7 @@ public class SimpleLog implements Log {
      * concatenation to be avoided when the message will be ignored by the
      * logger. </p>
      *
-     * @return true, if the {@link SimpleLog.LOG_LEVEL_ERROR} is enabled, false otherwise
+     * @return true, if the {@link SimpleLog#LOG_LEVEL_ERROR} is enabled, false otherwise
      */
     public final boolean isErrorEnabled() {
         return isLevelEnabled(SimpleLog.LOG_LEVEL_ERROR);
@@ -419,7 +419,7 @@ public class SimpleLog implements Log {
      * concatenation to be avoided when the message will be ignored by the
      * logger. </p>
      *
-     * @return true, if the {@link SimpleLog.LOG_LEVEL_FATAL} is enabled, false otherwise
+     * @return true, if the {@link SimpleLog#LOG_LEVEL_FATAL} is enabled, false otherwise
      */
     public final boolean isFatalEnabled() {
         return isLevelEnabled(SimpleLog.LOG_LEVEL_FATAL);
@@ -432,7 +432,7 @@ public class SimpleLog implements Log {
      * concatenation to be avoided when the message will be ignored by the
      * logger. </p>
      *
-     * @return true, if the {@link SimpleLog.LOG_LEVEL_INFO} is enabled, false otherwise
+     * @return true, if the {@link SimpleLog#LOG_LEVEL_INFO} is enabled, false otherwise
      */
     public final boolean isInfoEnabled() {
         return isLevelEnabled(SimpleLog.LOG_LEVEL_INFO);
@@ -445,7 +445,7 @@ public class SimpleLog implements Log {
      * concatenation to be avoided when the message will be ignored by the
      * logger. </p>
      *
-     * @return true, if the {@link SimpleLog.LOG_LEVEL_TRACE} is enabled, false otherwise
+     * @return true, if the {@link SimpleLog#LOG_LEVEL_TRACE} is enabled, false otherwise
      */
     public final boolean isTraceEnabled() {
         return isLevelEnabled(SimpleLog.LOG_LEVEL_TRACE);
@@ -458,7 +458,7 @@ public class SimpleLog implements Log {
      * concatenation to be avoided when the message will be ignored by the
      * logger. </p>
      *
-     * @return true, if the {@link SimpleLog.LOG_LEVEL_WARN} is enabled, false otherwise
+     * @return true, if the {@link SimpleLog#LOG_LEVEL_WARN} is enabled, false otherwise
      */
     public final boolean isWarnEnabled() {
         return isLevelEnabled(SimpleLog.LOG_LEVEL_WARN);