make travis not try to run a test it wasn't supposed to

This commit is contained in:
Lucas
2019-06-10 00:02:45 +02:00
parent fb63ba500a
commit d36c6ecd21
3 changed files with 6 additions and 4 deletions

View File

@@ -222,7 +222,7 @@ public class ClientLoader
if (rs instanceof Client)
{
log.info("client-patch {}", "420 blaze it RL pricks");
log.info("client-patch 420 blaze it RL pricks");
}
return rs;
@@ -274,7 +274,7 @@ public class ClientLoader
{
FileOutputStream fileOutputStream = new FileOutputStream(INJECTED_CLIENT);
fileOutputStream.getChannel()
.transferFrom(readableByteChannel, 0, Long.MAX_VALUE);
.transferFrom(readableByteChannel, 0, Integer.MAX_VALUE);
}
catch (IOException e)
{