mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2025-01-29 19:41:50 +01:00
Fix 'reached end of stream for null'
This commit is contained in:
parent
aa353d44e6
commit
2603c3ae2c
@ -14,8 +14,8 @@ public class EmptySocket extends Socket {
|
||||
|
||||
@Override
|
||||
public OutputStream getOutputStream() {
|
||||
return new ByteArrayOutputStream(1);
|
||||
return new ByteArrayOutputStream(10);
|
||||
}
|
||||
|
||||
private static final byte[] EMPTY = new byte[0];
|
||||
private static final byte[] EMPTY = new byte[20];
|
||||
}
|
Loading…
Reference in New Issue
Block a user