1、自动补传功能

This commit is contained in:
weidong 2023-12-22 16:56:22 +08:00
parent ea1a5f532d
commit 36cc1c265e
2 changed files with 1 additions and 19 deletions

View File

@ -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>

View File

@ -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();