Skip to content

Commit

Permalink
change some two public methods to private
Browse files Browse the repository at this point in the history
  • Loading branch information
ssyijiu committed Oct 14, 2016
1 parent ff59f46 commit f5f07be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/src/main/java/com/ssyijiu/library/MLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private static void printLog(String defaultTag, LogLev lev, String msg) {
TAG = tmpTAG;
}

public static String getMsg(Object obj) {
private static String getMsg(Object obj) {
return obj != null && obj.toString() != null ? obj.toString() : "null";
}

Expand All @@ -156,7 +156,7 @@ public static String getMsg(Object obj) {
}


public static enum LogLev {
private static enum LogLev {
V(1),
D(2),
I(3),
Expand Down

0 comments on commit f5f07be

Please sign in to comment.