Skip to content

Commit b4e42b4

Browse files
committed
see 11/29 log
1 parent 4b72c7e commit b4e42b4

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

subutil/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ android {
5252

5353
dependencies {
5454
compileOnly "com.android.support:appcompat-v7:$support_version"
55-
compileOnly "com.android.support:support-v4:$support_version"
5655
compileOnly "com.android.support:design:$support_version"
5756

5857
testImplementation "junit:junit:$junit_version"

utilcode/build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ android {
5151

5252
dependencies {
5353
compileOnly "com.android.support:appcompat-v7:$support_version"
54-
compileOnly "com.android.support:support-v4:$support_version"
5554
compileOnly "com.android.support:design:$support_version"
5655

5756
testImplementation "junit:junit:$junit_version"

utilcode/src/main/java/com/blankj/utilcode/util/BarUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ private BarUtils() {
4646
}
4747

4848
/**
49-
* 获取状态栏高度(px)
49+
* 获取状态栏高度(单位:px)
5050
*
51-
* @return 状态栏高度px
51+
* @return 状态栏高度(单位:px)
5252
*/
5353
public static int getStatusBarHeight() {
5454
Resources resources = Utils.getApp().getResources();

utilcode/src/main/java/com/blankj/utilcode/util/CacheUtils.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public final class CacheUtils {
5858

5959
/**
6060
* 获取缓存实例
61-
* <p>在/data/data/com.xxx.xxx/cache/cacheUtils目录</p>
61+
* <p>在 /data/data/com.xxx.xxx/cache/cacheUtils 目录</p>
6262
* <p>缓存尺寸不限</p>
6363
* <p>缓存个数不限</p>
6464
*
@@ -70,7 +70,7 @@ public static CacheUtils getInstance() {
7070

7171
/**
7272
* 获取缓存实例
73-
* <p>在/data/data/com.xxx.xxx/cache/cacheName目录</p>
73+
* <p>在 /data/data/com.xxx.xxx/cache/cacheName 目录</p>
7474
* <p>缓存尺寸不限</p>
7575
* <p>缓存个数不限</p>
7676
*
@@ -83,7 +83,7 @@ public static CacheUtils getInstance(final String cacheName) {
8383

8484
/**
8585
* 获取缓存实例
86-
* <p>在/data/data/com.xxx.xxx/cache/cacheUtils目录</p>
86+
* <p>在 /data/data/com.xxx.xxx/cache/cacheUtils目录 </p>
8787
*
8888
* @param maxSize 最大缓存尺寸,单位字节
8989
* @param maxCount 最大缓存个数
@@ -95,7 +95,7 @@ public static CacheUtils getInstance(final long maxSize, final int maxCount) {
9595

9696
/**
9797
* 获取缓存实例
98-
* <p>在/data/data/com.xxx.xxx/cache/cacheName目录</p>
98+
* <p>在 /data/data/com.xxx.xxx/cache/cacheName 目录</p>
9999
*
100100
* @param cacheName 缓存目录名
101101
* @param maxSize 最大缓存尺寸,单位字节
@@ -110,7 +110,7 @@ public static CacheUtils getInstance(String cacheName, final long maxSize, final
110110

111111
/**
112112
* 获取缓存实例
113-
* <p>在cacheDir目录</p>
113+
* <p>在 cacheDir 目录</p>
114114
* <p>缓存尺寸不限</p>
115115
* <p>缓存个数不限</p>
116116
*
@@ -123,7 +123,7 @@ public static CacheUtils getInstance(@NonNull final File cacheDir) {
123123

124124
/**
125125
* 获取缓存实例
126-
* <p>在cacheDir目录</p>
126+
* <p>在 cacheDir 目录</p>
127127
*
128128
* @param cacheDir 缓存目录
129129
* @param maxSize 最大缓存尺寸,单位字节

0 commit comments

Comments
 (0)