From 8c4a19654ae79952d5d70994889126feb69ecd06 Mon Sep 17 00:00:00 2001 From: Mathis Chenuet Date: Sun, 25 Jan 2015 18:24:27 +0000 Subject: [PATCH] Cleanup: sort modifiers --- src/com/sheepit/client/Log.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sheepit/client/Log.java b/src/com/sheepit/client/Log.java index c10ada5..7ba970a 100644 --- a/src/com/sheepit/client/Log.java +++ b/src/com/sheepit/client/Log.java @@ -86,7 +86,7 @@ public class Log { } } - public final synchronized static Log getInstance(Configuration config) { + public static synchronized Log getInstance(Configuration config) { if (instance == null) { boolean print = false; if (config != null) { @@ -97,7 +97,7 @@ public class Log { return instance; } - public final synchronized static void printCheckPoint(int point_) { + public static synchronized void printCheckPoint(int point_) { Log log = Log.getInstance(null); ArrayList logs = log.getForCheckPoint(point_); Iterator it = logs.iterator();