Skip to content

Commit

Permalink
~
Browse files Browse the repository at this point in the history
~
  • Loading branch information
litesuits committed Dec 25, 2015
1 parent a5e9ce3 commit 69131c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/litesuits/android/log/Log.java
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
}
Expand Down

0 comments on commit 69131c2

Please sign in to comment.