Fixed BufferUnderflowException
Fixed the exception occurring when using this serializer. More commented here: http://hub.jmonkeyengine.org/t/savableserializer-and-client-bufferunderflowexception/31774
This commit is contained in:
parent
ee151af5d2
commit
2aa6f9f521
@ -93,7 +93,7 @@ public class SavableSerializer extends Serializer {
|
||||
@Override
|
||||
public int read(byte[] b, int off, int len){
|
||||
int toRead = len > input.remaining() ? input.remaining() : len;
|
||||
input.get(b, off, len);
|
||||
input.get(b, off, toRead);
|
||||
return toRead;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user