Skip to content

Commit

Permalink
v5.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
839128 committed Apr 13, 2020
1 parent 01e106e commit 160b020
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 26 deletions.
44 changes: 22 additions & 22 deletions bus-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -222,28 +222,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
<include>${project.groupId}:*:*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -277,6 +255,28 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<createSourcesJar>true</createSourcesJar>
<artifactSet>
<includes>
<include>${project.groupId}:*:*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bus-all/src/main/java/org/aoju/bus/Bus.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* </p>
*
* <p>
* 欢迎各种形式的贡献,包括但不限于优化,添加功能,文档 & 代码的改进,问题和 bugs 的报告
* 欢迎各种形式的贡献,包括但不限于优化,添加功能,文档 代码的改进,问题和 bugs 的报告
* </p>
*
* @author Kimi Liu
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public int peek(int index) throws IOException {
* 访问上次peekNext访问的下个位置的字节, 未访问过则访问索引0, poll, peek后归零, 不删除
*
* @return 下一个位置的字节
* @throws IOException
* @throws IOException 异常
*/
public int peekNext() throws IOException {
return peek(peekindex++);
Expand Down Expand Up @@ -202,7 +202,7 @@ public boolean isEnd() {
/**
* 是否以 start 开始
*
* @param start
* @param start 开始位置
* @return true, 如果的确以指定字符串开始
* @throws IOException 异常
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public void close() throws IOException {
/**
* 是否以 start 开始
*
* @param start
* @param start 开始位置
* @return true, 如果的确以指定字符串开始
* @throws IOException 异常
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.aoju.bus.core.utils.MapUtils;

import java.nio.charset.Charset;
import java.util.Locale;
import java.util.*;
import java.util.Map.Entry;
import java.util.regex.Matcher;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import java.net.URI;
import java.net.URL;
import java.time.temporal.TemporalAccessor;
import java.util.Locale;
import java.util.*;

/**
Expand Down

0 comments on commit 160b020

Please sign in to comment.