Skip to content

Commit 8fb36d9

Browse files
committed
see 05/15 log
1 parent f5e26cf commit 8fb36d9

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Android开发人员不得不收集的代码([持续更新中][update_log.md])
1+
# :fire: Android开发人员不得不收集的代码([持续更新中][update_log.md])
22

33
[![auc][aucsvg]][auc] [![api][apisvg]][api] [![build][buildsvg]][build] [![License][licensesvg]][license]
44

@@ -650,7 +650,7 @@ Utils.init(context);
650650
[build]: https://travis-ci.org/Blankj/AndroidUtilCode
651651

652652
[licensesvg]: https://img.shields.io/badge/License-Apache--2.0-brightgreen.svg
653-
[license]: https://opensource.org/licenses/apache2.0.php
653+
[license]: https://github.com/Blankj/AndroidUtilCode/blob/master/LICENSE
654654

655655
[jianshusvg]: https://img.shields.io/badge/简书-Blankj-brightgreen.svg
656656
[jianshu]: http://www.jianshu.com/u/46702d5c6978

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Android developers should collect the following utils
1+
# :fire: Android developers should collect the following utils
22

33
[![auc][aucsvg]][auc] [![api][apisvg]][api] [![build][buildsvg]][build] [![License][licensesvg]][license]
44

@@ -650,7 +650,7 @@ Utils.init(context);
650650
[build]: https://travis-ci.org/Blankj/AndroidUtilCode
651651

652652
[licensesvg]: https://img.shields.io/badge/License-Apache--2.0-brightgreen.svg
653-
[license]: https://opensource.org/licenses/apache2.0.php
653+
[license]: https://github.com/Blankj/AndroidUtilCode/blob/master/LICENSE
654654

655655
[jianshusvg]: https://img.shields.io/badge/简书-Blankj-brightgreen.svg
656656
[jianshu]: http://www.jianshu.com/u/46702d5c6978

utilcode/src/test/java/com/blankj/utilcode/util/TestUtils.java

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
import org.robolectric.annotation.Config;
88

99
import java.io.File;
10-
import java.text.SimpleDateFormat;
11-
import java.util.Date;
1210
import java.util.List;
13-
import java.util.Locale;
1411

1512
/**
1613
* <pre>
@@ -42,13 +39,13 @@ public static void init() {
4239
Utils.init(RuntimeEnvironment.application);
4340
}
4441

45-
// @Test
42+
// @Test
4643
public void readme2Eng() throws Exception {
4744
formatCN();
4845
File readmeCN = new File(new File(System.getProperty("user.dir")).getAbsolutePath() + FILE_SEP + "README-CN.md");
4946
File readmeEng = new File(new File(System.getProperty("user.dir")).getAbsolutePath() + FILE_SEP + "README.md");
5047
List<String> list = FileUtils.readFile2List(readmeCN, "UTF-8");
51-
StringBuilder sb = new StringBuilder("# Android developers should collect the following utils" + LINE_SEP + LINE_SEP +
48+
StringBuilder sb = new StringBuilder("# :fire: Android developers should collect the following utils" + LINE_SEP + LINE_SEP +
5249
"[![auc][aucsvg]][auc] [![api][apisvg]][api] [![build][buildsvg]][build] [![License][licensesvg]][license]" + LINE_SEP + LINE_SEP +
5350
"## [README of Chinese][readme-cn.md]" + LINE_SEP + LINE_SEP +
5451
"## API" + LINE_SEP + LINE_SEP);
@@ -119,7 +116,6 @@ public void formatCN() throws Exception {
119116

120117
@Test
121118
public void test() throws Exception {
122-
System.out.println(new SimpleDateFormat("E", Locale.CHINA).format(new Date()));
123-
System.out.println(System.getProperty("user.dir"));
119+
124120
}
125121
}

0 commit comments

Comments
 (0)