Looly 5 年 前
コミット
c00ab6e126

+ 1 - 0
CHANGELOG.md

@@ -15,6 +15,7 @@
 * 【bloomFilter】 避免布隆过滤器数字溢出(pr#119@Gitee)
 * 【bloomFilter】 避免布隆过滤器数字溢出(pr#119@Gitee)
 * 【core   】     增加IoUtil.writeObj(issue#I1FZIE)
 * 【core   】     增加IoUtil.writeObj(issue#I1FZIE)
 * 【core   】     增加FastStringWriter
 * 【core   】     增加FastStringWriter
+* 【core   】     增加NumberUtil.ceilDiv方法(pr#858@Github)
 
 
 ### Bug修复
 ### Bug修复
 * 【core   】     修复URLBuilder中请求参数有`&`导致的问题(issue#850@Github)
 * 【core   】     修复URLBuilder中请求参数有`&`导致的问题(issue#850@Github)

+ 0 - 1
hutool-extra/src/main/java/cn/hutool/extra/pinyin/PinyinUtil.java

@@ -20,7 +20,6 @@ import com.github.promeg.pinyinhelper.Pinyin;
  *     <version>2.0.3.RELEASE</version>
  *     <version>2.0.3.RELEASE</version>
  * </dependency>
  * </dependency>
  * </pre>
  * </pre>
- * </p>
  *
  *
  * @author looly
  * @author looly
  */
  */

+ 1 - 1
hutool-http/src/test/java/cn/hutool/http/test/HttpUtilTest.java

@@ -19,7 +19,7 @@ import java.util.Map;
 public class HttpUtilTest {
 public class HttpUtilTest {
 
 
 	@Test
 	@Test
-//	@Ignore
+	@Ignore
 	public void postTest() {
 	public void postTest() {
 		String result = HttpUtil.createPost("api.uhaozu.com/goods/description/1120448506").charset(CharsetUtil.UTF_8).execute().body();
 		String result = HttpUtil.createPost("api.uhaozu.com/goods/description/1120448506").charset(CharsetUtil.UTF_8).execute().body();
 		Console.log(result);
 		Console.log(result);