mirror of
https://github.com/ME1312/SubServers-2.git
synced 2024-11-22 10:15:52 +01:00
Update Dependencies
This commit is contained in:
parent
a86571a136
commit
668fccccfe
@ -28,7 +28,7 @@
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiUtil</artifactId>
|
||||
<version>21w26a</version>
|
||||
<version>21w26b</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -34,7 +34,7 @@
|
||||
<dependency>
|
||||
<groupId>net.ME1312.SubData</groupId>
|
||||
<artifactId>Server</artifactId>
|
||||
<version>21w26a</version>
|
||||
<version>21w26b</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -641,7 +641,7 @@ public class InternalSubCreator extends SubCreator {
|
||||
} private byte[] generateSHA256(File file) throws Exception {
|
||||
MessageDigest md = MessageDigest.getInstance("SHA-256");
|
||||
FileInputStream fis = new FileInputStream(file);
|
||||
byte[] dataBytes = new byte[1024];
|
||||
byte[] dataBytes = new byte[4096];
|
||||
|
||||
int nread;
|
||||
|
||||
|
@ -18,13 +18,13 @@
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiUtil</artifactId>
|
||||
<version>21w26a</version>
|
||||
<version>21w26b</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.ME1312.SubData</groupId>
|
||||
<artifactId>Client</artifactId>
|
||||
<version>21w26a</version>
|
||||
<version>21w26b</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
@ -656,7 +656,7 @@ public final class ConsoleWindow implements SubLogFilter {
|
||||
}
|
||||
|
||||
int i;
|
||||
byte[] b = new byte[1024];
|
||||
byte[] b = new byte[4096];
|
||||
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
||||
while ((i = reader.read(b)) != -1) {
|
||||
stream.write(b, 0, i);
|
||||
|
@ -30,13 +30,13 @@
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiEngine</artifactId>
|
||||
<version>21w26a</version>
|
||||
<version>21w26b</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.ME1312.Galaxi</groupId>
|
||||
<artifactId>GalaxiUI</artifactId>
|
||||
<version>21w26a</version>
|
||||
<version>21w26b</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -619,7 +619,7 @@ public class SubCreatorImpl {
|
||||
} private byte[] generateSHA256(File file) throws Exception {
|
||||
MessageDigest md = MessageDigest.getInstance("SHA-256");
|
||||
FileInputStream fis = new FileInputStream(file);
|
||||
byte[] dataBytes = new byte[1024];
|
||||
byte[] dataBytes = new byte[4096];
|
||||
|
||||
int nread;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user