From 83ff55caf4ba66d2788106f071644a502c7bbd48 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Fri, 14 Jun 2013 19:11:09 +0000 Subject: [PATCH] Sort methods in AB order. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@1493214 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/logging/Log.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/logging/Log.java b/src/main/java/org/apache/commons/logging/Log.java index c7454f1..947c3e6 100644 --- a/src/main/java/org/apache/commons/logging/Log.java +++ b/src/main/java/org/apache/commons/logging/Log.java @@ -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. *