Skip to content

Commit fdf8b3a

Browse files
committed
see 11/01 log
1 parent 1c36d1e commit fdf8b3a

File tree

8 files changed

+1536
-533
lines changed

8 files changed

+1536
-533
lines changed

app/src/main/java/com/blankj/androidutilcode/base/BaseActivity.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
import android.view.LayoutInflater;
99
import android.view.View;
1010

11-
import com.blankj.utilcode.util.ScreenUtils;
12-
1311
/**
1412
* <pre>
1513
* author: Blankj

utilcode-kotlin/src/main/java/com/blankj/utilcode/util/LogUtils.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,6 @@ private static void printSubMsg(final int type, final String tag, final String m
400400
Log.println(type, tag, msg);
401401
return;
402402
}
403-
StringBuilder sb = new StringBuilder();
404403
String[] lines = msg.split(LINE_SEP);
405404
for (String line : lines) {
406405
Log.println(type, tag, LEFT_BORDER + line);
@@ -577,16 +576,6 @@ private static boolean createOrExistsDir(final File file) {
577576
return file != null && (file.exists() ? file.isDirectory() : file.mkdirs());
578577
}
579578

580-
private static boolean isSpace(final String s) {
581-
if (s == null) return true;
582-
for (int i = 0, len = s.length(); i < len; ++i) {
583-
if (!Character.isWhitespace(s.charAt(i))) {
584-
return false;
585-
}
586-
}
587-
return true;
588-
}
589-
590579
private static void input2File(final String input, final String filePath) {
591580
EXECUTOR.execute(new Runnable() {
592581
@Override

0 commit comments

Comments
 (0)