From 69131c253b899712dea258800f18c97e936b41ec Mon Sep 17 00:00:00 2001 From: MaTianyu Date: Fri, 25 Dec 2015 19:06:24 +0800 Subject: [PATCH] ~ ~ --- src/com/litesuits/android/log/Log.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/litesuits/android/log/Log.java b/src/com/litesuits/android/log/Log.java index 880656f..eab4c3e 100644 --- a/src/com/litesuits/android/log/Log.java +++ b/src/com/litesuits/android/log/Log.java @@ -78,7 +78,7 @@ private static String getLogMessage(Object... msg) { if (msg != null && msg.length > 0) { StringBuilder sb = new StringBuilder(); for (Object s : msg) { - if (msg != null && s != null) { + if (s != null) { sb.append(s.toString()); } }