Skip to content

Commit

Permalink
Update Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ME1312 committed Jun 26, 2021
1 parent a86571a commit 668fccc
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion SubServers.Bungee/common/pom.xml
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>net.ME1312.Galaxi</groupId>
<artifactId>GalaxiUtil</artifactId>
<version>21w26a</version>
<version>21w26b</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion SubServers.Bungee/pom.xml
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>net.ME1312.SubData</groupId>
<artifactId>Server</artifactId>
<version>21w26a</version>
<version>21w26b</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
Expand Up @@ -641,7 +641,7 @@ private void updateDirectory(File from, File to, boolean overwrite) {
} 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;

Expand Down
4 changes: 2 additions & 2 deletions SubServers.Client/Common/pom.xml
Expand Up @@ -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>
Expand Down
Expand Up @@ -656,7 +656,7 @@ private void loadContent() {
}

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);
Expand Down
4 changes: 2 additions & 2 deletions SubServers.Host/pom.xml
Expand Up @@ -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>
Expand Down
Expand Up @@ -619,7 +619,7 @@ private void updateDirectory(File from, File to, boolean overwrite) {
} 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;

Expand Down

0 comments on commit 668fccc

Please sign in to comment.