Looly
|
843a222bee
|
add LocalTimeUtil\
|
2022-12-14 09:02:33 +08:00 |
|
LuisStruggle
|
7bc020607f
|
test:ReUtil.replaceAll()方法,当replacementTemplate为null对象时,出现空指针异常(优化测试方法)
|
2022-12-12 19:30:02 +08:00 |
|
LuisStruggle
|
a6ffb7a62f
|
fix:ReUtil.replaceAll()方法,当replacementTemplate为null对象时,出现空指针异常
|
2022-12-12 19:06:04 +08:00 |
|
Looly
|
cfc72cc2a9
|
add test
|
2022-12-12 13:09:52 +08:00 |
|
wy
|
344a292a30
|
perf(core): 替换缓存键类型 Tuple -> MutableEntry
|
2022-12-11 14:30:03 +08:00 |
|
wy
|
9daec07e5a
|
perf(test): 补充性能测试
|
2022-12-11 12:17:39 +08:00 |
|
wy
|
58d28c0767
|
feat(core): 新增LambdaFactory
|
2022-12-11 09:12:36 +08:00 |
|
臧臧
|
0bc8ce836a
|
【6.x】将Opt的ofTry捕获范围从Exception提升到Throwable
|
2022-12-06 14:13:48 +08:00 |
|
Looly
|
e75f4617aa
|
fix bug
|
2022-12-05 23:17:46 +08:00 |
|
Looly
|
75d536839c
|
fix code
|
2022-11-30 23:51:36 +08:00 |
|
Looly
|
2a48fe02b9
|
!884 【6.x】添加BeanTree,用于满足条件的Bean进行树转换与操作
Merge pull request !884 from 阿超/v6-dev
|
2022-11-30 01:22:19 +00:00 |
|
Looly
|
738519d6db
|
fix test
|
2022-11-27 16:04:17 +08:00 |
|
achao
|
80287ec19f
|
:trollface: 新增BeanTree
|
2022-11-26 22:43:38 +08:00 |
|
VampireAchao
|
e96eff5cff
|
:trollface: 移除EasyStream中对于树的函数
|
2022-11-26 22:05:10 +08:00 |
|
Looly
|
3aac1e9af6
|
fix code
|
2022-11-26 12:23:31 +08:00 |
|
Looly
|
a1ba1ecf6b
|
!872 优化NumberUtil.isInteger和isLong的判断逻辑
Merge pull request !872 from emptypoint/update-NumberUtil
|
2022-11-24 05:03:28 +00:00 |
|
Looly
|
074ead4f17
|
fix code
|
2022-11-24 12:51:13 +08:00 |
|
Looly
|
8ae9387336
|
!874 修复ArrayUtil.insert()不支持原始类型数组的问题
Merge pull request !874 from emptypoint/fix-ArrayUtil-insert
|
2022-11-24 04:46:15 +00:00 |
|
Looly
|
e85bd4ada4
|
fix code
|
2022-11-24 12:29:08 +08:00 |
|
emptypoint
|
b119a7a219
|
修复ArrayUtil.insert()无法操作原始类型数组的问题;
|
2022-11-18 23:32:26 +08:00 |
|
Golden Looly
|
98307df486
|
Merge pull request #2740 from Createsequence/fix-test
修复在高版本jdk下测试用例不通过的问题(https://github.com/dromara/hutool/issues/2739)
|
2022-11-18 17:08:54 +08:00 |
|
Zjp
|
a22f43c689
|
优化isInteger和isLong的判断逻辑, 支持8进制和16进制;
|
2022-11-18 16:39:39 +08:00 |
|
Zjp
|
9a1ed650a8
|
搬运apache-NumberUtils.isCreatable方法及测试用例;
|
2022-11-17 17:24:10 +08:00 |
|
ZZemptypoint
|
c1b72a9bf1
|
Update hutool-core/src/test/java/cn/hutool/core/stream/EntryStreamTest.java
|
2022-11-17 14:11:29 +08:00 |
|
黄成兴
|
6d3f296d70
|
Update hutool-core/src/test/java/cn/hutool/core/stream/EntryStreamTest.java
Co-authored-by: ZZemptypoint <1215582715@qq.com>
|
2022-11-17 13:42:09 +08:00 |
|
huangchengxing
|
f6a3a583c3
|
修复在高版本jdk下测试用例不通过的问题(https://github.com/dromara/hutool/issues/2739)
|
2022-11-17 12:27:16 +08:00 |
|
Looly
|
21b91fcde6
|
几个小优化
|
2022-11-17 01:13:59 +08:00 |
|
Looly
|
7d962754fb
|
!868 几个小优化
Merge pull request !868 from emptypoint/几个小优化
|
2022-11-16 17:13:18 +00:00 |
|
Looly
|
83cccb0f75
|
back
|
2022-11-17 01:12:59 +08:00 |
|
Looly
|
4aba88e828
|
!869 优化NumberUtil.isPrimes()方法
Merge pull request !869 from emptypoint/update-NumberUtil.isPrime
|
2022-11-16 17:06:40 +00:00 |
|
Looly
|
93c6b7e3e7
|
fix code
|
2022-11-17 01:03:42 +08:00 |
|
Zjp
|
ab39b7410f
|
几个小优化:
1.优化CollUtil.map()方法, 减少流中的无意义操作;
2.优化ArrayUtil.get()方法, 使用合理的逻辑判断 代替 使用异常判断null值;
|
2022-11-14 20:28:48 +08:00 |
|
Zjp
|
bb29b97849
|
优化NumberUtil.isPrime()方法:
1.优化执行过程, 直接排除偶数;
2.修改函数名, 从复数形式变为单数;
|
2022-11-14 20:23:55 +08:00 |
|
Looly
|
f8ac46007c
|
!851 添加一个简单的占位符解析器
Merge pull request !851 from Createsequence/v6-placeholder
|
2022-11-13 14:07:34 +00:00 |
|
Looly
|
d21c641efd
|
fix code
|
2022-11-13 22:06:29 +08:00 |
|
Looly
|
05b20382c0
|
fix code
|
2022-11-12 19:11:39 +08:00 |
|
Looly
|
ef10457954
|
fix code
|
2022-11-11 11:58:29 +08:00 |
|
Looly
|
10ffd8750b
|
fix code
|
2022-11-10 12:09:37 +08:00 |
|
Looly
|
1eb8acfcba
|
!864 修复BeanUtilTest的变量赋值错误
Merge pull request !864 from emptypoint/fix-BeanUtilTest
|
2022-11-10 03:55:02 +00:00 |
|
Looly
|
c69d41e72d
|
fix bug
|
2022-11-10 10:37:54 +08:00 |
|
Zjp
|
5f9c3424e4
|
fix BeanUtilTest的变量赋值错误;
|
2022-11-09 14:57:21 +08:00 |
|
Looly
|
b7d91489f4
|
fix code
|
2022-11-08 18:50:36 +08:00 |
|
Looly
|
1b7269187a
|
fix code
|
2022-11-08 10:46:52 +08:00 |
|
Looly
|
d0083fb953
|
fix test
|
2022-11-08 10:19:12 +08:00 |
|
Looly
|
bccad5f304
|
fix code
|
2022-11-08 10:09:55 +08:00 |
|
Looly
|
5227f1517a
|
remove cache for ClassLoaderUtil
|
2022-11-08 10:05:08 +08:00 |
|
huangchengxing
|
c4c11ffeb6
|
添加一个占位符解析器
|
2022-11-08 09:24:05 +08:00 |
|
Looly
|
3b1a375096
|
fix code
|
2022-11-03 23:37:48 +08:00 |
|
Looly
|
415a091b5e
|
fix bug
|
2022-10-27 18:39:08 +08:00 |
|
Looly
|
ad5296866d
|
add test
|
2022-10-26 21:31:04 +08:00 |
|