Skip to content
Snippets Groups Projects
Commit 46dae436 authored by bontric's avatar bontric
Browse files

fix default initialisation of stream (causes problems when upcasting)

parent 1948f280
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ import org.briarproject.bramble.api.contact.ContactId; ...@@ -5,7 +5,7 @@ import org.briarproject.bramble.api.contact.ContactId;
import org.briarproject.bramble.api.data.BdfList; import org.briarproject.bramble.api.data.BdfList;
public class MailboxRequestTake extends MailboxRequest { public class MailboxRequestTake extends MailboxRequest {
private byte[] encryptedSyncStream = null; private byte[] encryptedSyncStream;
public MailboxRequestTake(byte[] encryptedSyncStream) { public MailboxRequestTake(byte[] encryptedSyncStream) {
super(TYPE.TAKE); super(TYPE.TAKE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment