You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/06/14 21:11:09 UTC

svn commit: r1493214 - /commons/proper/logging/trunk/src/main/java/org/apache/commons/logging/Log.java

Author: ggregory
Date: Fri Jun 14 19:11:09 2013
New Revision: 1493214

URL: http://svn.apache.org/r1493214
Log:
Sort methods in AB order.

Modified:
    commons/proper/logging/trunk/src/main/java/org/apache/commons/logging/Log.java

Modified: commons/proper/logging/trunk/src/main/java/org/apache/commons/logging/Log.java
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/src/main/java/org/apache/commons/logging/Log.java?rev=1493214&r1=1493213&r2=1493214&view=diff
==============================================================================
--- commons/proper/logging/trunk/src/main/java/org/apache/commons/logging/Log.java (original)
+++ commons/proper/logging/trunk/src/main/java/org/apache/commons/logging/Log.java Fri Jun 14 19:11:09 2013
@@ -58,15 +58,13 @@ package org.apache.commons.logging;
  */
 public interface Log {
 
-    // ----------------------------------------------------- Logging Properties
-
-    /**
+	/**
      * Logs a message with debug log level.
      *
      * @param message log this message
      */
     public void debug(Object message);
-
+	
     /**
      * Logs an error with debug log level.
      *
@@ -105,8 +103,6 @@ public interface Log {
      */
     public void fatal(Object message, Throwable t);
 
-    // -------------------------------------------------------- Logging Methods
-
     /**
      * Logs a message with info log level.
      *