Skip to content

Commit 81f6692

Browse files
committed
see 11/27 log
1 parent e3cd22e commit 81f6692

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

README-CN.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,10 @@ getEntries : 获取压缩文件中的文件对象
501501
502502
***
503503

504-
**做这份整理是想把它作为Android开发的小字典,当遇到一些琐碎问题时,不用再面向百度或者谷歌查询API的使用,费时费力,这里有的话,大家尽管撸走;同时也希望它能逐日壮大起来,期待大家的Star和完善,当然我也会一直更新发布版本和日志,为了方便大家导入,现已上传jcenter;其中很多代码也是汇四方之精华,谢谢前辈们的提供,当然最终还是要通过单元测试的,如有错误,请及时告之;开设QQ群提供讨论,群号:74721490,至于验证问题对大家来说肯定都是小case;最近在玩微博,玩的话向大家求个[关注][weibo]**
504+
### 关于
505+
* 做这份整理是想把它作为Android开发的小字典,当遇到一些琐碎问题时,不用再面向百度或者谷歌查询API的使用,费时费力,这里有的话,大家尽管撸走;同时也希望它能逐日壮大起来,期待大家的Star和完善,当然我也会一直更新发布版本和日志,为了方便大家导入,现已上传jcenter;其中很多代码也是汇四方之精华,谢谢前辈们的提供,当然最终还是要通过单元测试的,如有错误,请及时告之。
506+
* QQ群提供讨论,1群:74721490(已满)2群:25206533,至于验证问题对大家来说肯定都是小case。
507+
* 我的[微博][weibo],求个关注哈。
505508

506509
### Download
507510
***

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,12 @@ public void readme2Eng() throws Exception {
5252
String utilsName = line.substring(line.indexOf("[") + 1, line.indexOf("Utils"));
5353
sb.append("> - **About ").append(utilsName).append(line.substring(line.indexOf("→")));
5454
} else if (line.contains(" : ")) {
55-
sb.append(line.substring(0, line.indexOf(':')).trim());
56-
} else if (line.contains("**做")) {
55+
sb.append(line.substring(0, line.indexOf(
56+
':')).trim());
57+
} else if (line.contains("### 关于")) {
5758
sb.append("**I'm so sorry for that the code is annotated with Chinese.**");
59+
} else if (line.contains("* 做") || line.contains("* QQ") || line.contains("* 我的")) {
60+
continue;
5861
} else {
5962
sb.append(line);
6063
}

0 commit comments

Comments
 (0)