1、自动补传功能
This commit is contained in:
parent
ea1a5f532d
commit
36cc1c265e
@ -58,23 +58,6 @@
|
|||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<finalName>${project.artifactId}</finalName>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>repackage</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>central</id>
|
<id>central</id>
|
||||||
|
|||||||
@ -337,8 +337,7 @@ public class ByteUtil {
|
|||||||
*/
|
*/
|
||||||
public static String bytesToHexString(byte[] b) {
|
public static String bytesToHexString(byte[] b) {
|
||||||
StringBuffer buffer = new StringBuffer();
|
StringBuffer buffer = new StringBuffer();
|
||||||
int i = 0;
|
for (int i = 0; i < b.length; ++i) {
|
||||||
for (i = 0; i < b.length; ++i) {
|
|
||||||
buffer.append(byteToHexString(b[i]));
|
buffer.append(byteToHexString(b[i]));
|
||||||
}
|
}
|
||||||
return buffer.toString();
|
return buffer.toString();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user