release 5.2.5

This commit is contained in:
Looly
2020-03-26 23:58:44 +08:00
parent 0d7ef8f092
commit 4d8b21f831
23 changed files with 23 additions and 23 deletions

View File

@@ -9,7 +9,7 @@
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
<version>5.2.5-SNAPSHOT</version>
<version>5.2.5</version>
</parent>
<artifactId>hutool-core</artifactId>

View File

@@ -486,7 +486,7 @@ public class CollUtil {
*/
@SafeVarargs
public static <T> LinkedHashSet<T> newLinkedHashSet(T... ts) {
return (LinkedHashSet<T>) newHashSet(true, ts);
return (LinkedHashSet<T>) set(true, ts);
}
/**