Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
looly committed Jun 15, 2021
1 parent 40dcdf5 commit 6212d60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ public static <T> List<List<T>> split(Collection<T> collection, int size) {
*
* @param <T> 集合元素类型
* @param collection 集合
* @param editor 编辑器接口
* @param editor 编辑器接口,{@code null}返回原集合
* @return 过滤后的集合
*/
public static <T> Collection<T> edit(Collection<T> collection, Editor<T> editor) {
Expand Down Expand Up @@ -1171,7 +1171,7 @@ public static <T> Collection<T> edit(Collection<T> collection, Editor<T> editor)
*
* @param <T> 集合元素类型
* @param collection 集合
* @param filter 过滤器,{@link null}返回原集合
* @param filter 过滤器,{@code null}返回原集合
* @return 过滤后的数组
* @since 3.1.0
*/
Expand Down
4 changes: 2 additions & 2 deletions hutool-core/src/main/java/cn/hutool/core/map/MapUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ public static <K, V> Map<K, V> edit(Map<K, V> map, Editor<Entry<K, V>> editor) {
* @param <K> Key类型
* @param <V> Value类型
* @param map Map
* @param filter 编辑器接口,{@link null}返回原Map
* @param filter 过滤器接口,{@code null}返回原Map
* @return 过滤后的Map
* @since 3.1.0
*/
Expand All @@ -677,7 +677,7 @@ public static <K, V> Map<K, V> filter(Map<K, V> map, Filter<Entry<K, V>> filter)
* @param <K> Key类型
* @param <V> Value类型
* @param map 原始Map
* @param keys 键列表,{@link null}返回原Map
* @param keys 键列表,{@code null}返回原Map
* @return Map 结果,结果的Map类型与原Map保持一致
* @since 4.0.10
*/
Expand Down
4 changes: 2 additions & 2 deletions hutool-core/src/main/java/cn/hutool/core/util/ArrayUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ public static <T> T clone(final T obj) {
*
* @param <T> 数组元素类型
* @param array 数组
* @param editor 编辑器接口
* @param editor 编辑器接口,{@code null}返回原集合
* @since 5.3.3
*/
public static <T> T[] edit(T[] array, Editor<T> editor) {
Expand Down Expand Up @@ -616,7 +616,7 @@ public static <T> T[] edit(T[] array, Editor<T> editor) {
*
* @param <T> 数组元素类型
* @param array 数组
* @param filter 过滤器接口,用于定义过滤规则,null表示不过滤,返回原数组
* @param filter 过滤器接口,用于定义过滤规则,{@code null}返回原集合
* @return 过滤后的数组
* @since 3.2.1
*/
Expand Down

0 comments on commit 6212d60

Please sign in to comment.