Skip to content
This repository has been archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
upgrade-version-1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
venusdrogon committed Sep 18, 2016
1 parent 18d1a8b commit be87149
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ feilong-core jar你可以在 [仓库](https://github.com/venusdrogon/feilong-pla

....
<properties>
<version.feilong-platform>1.8.8</version.feilong-platform>
<version.feilong-platform>1.9.0</version.feilong-platform>
....
</properties>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.feilong.platform</groupId>
<artifactId>parent</artifactId>
<version>1.9.0-SNAPSHOT</version>
<version>1.9.0</version>
</parent>

<artifactId>feilong-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/feilong/core/bean/ConvertUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ public static String toString(Object toBeConvertedValue){
* @return 如果 <code>collection</code> 是null或者empty,返回 {@link StringUtils#EMPTY}<br>
* 如果 <code>toStringConfig</code> 是null,使用默认 {@link ToStringConfig#DEFAULT_CONNECTOR}以及 joinNullOrEmpty 进行连接<br>
* 都不是null,会循环,拼接toStringConfig.getConnector()
* @see #toString(Object..., ToStringConfig)
* @see #toString(Object[], ToStringConfig)
* @see "org.springframework.util.StringUtils#collectionToDelimitedString(Collection, String, String, String)"
* @see org.apache.commons.collections4.IteratorUtils#toString(Iterator)
* @since 1.8.4 change param order
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/feilong/core/net/URIUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ public static URI create(String uriString,String charsetType){
*
* <pre class="code">
*
* String pattern = "mailto:[email protected]?subject={}&body={}";
* String pattern = "mailto:[email protected]?subject={}{@code &}body={}";
*
* String uriString = Slf4jUtil.format(pattern, "你好", "我是飞天奔月<br>哈哈哈哈");
*
Expand Down Expand Up @@ -411,7 +411,7 @@ public static String encode(String value,String charsetType){
*
* <li>
* <a href="http://www.w3.org/TR/html40/appendix/notes.html#non-ascii-chars">World Wide Web Consortium Recommendation</a>
* 建议指出,UTF-8应该被使用.不这样做可能会带来兼容性能.</em>
* 建议指出,{@link CharsetType#UTF8}应该被使用.不这样做可能会带来兼容性能.
* </li>
*
* <li>
Expand Down

0 comments on commit be87149

Please sign in to comment.