Fixed some missing imports from recent refactoring.

This commit is contained in:
akwizgran
2015-12-16 12:50:17 +00:00
parent fb850eac09
commit e9226dc8e2
4 changed files with 11 additions and 9 deletions

View File

@@ -8,11 +8,11 @@ import java.security.GeneralSecurityException;
public interface MessageFactory {
Message createAnonymousMessage(MessageId parent, org.briarproject.api.sync.Group group,
Message createAnonymousMessage(MessageId parent, Group group,
String contentType, long timestamp, byte[] body) throws IOException,
GeneralSecurityException;
Message createPseudonymousMessage(MessageId parent, org.briarproject.api.sync.Group group,
Message createPseudonymousMessage(MessageId parent, Group group,
Author author, PrivateKey privateKey, String contentType,
long timestamp, byte[] body) throws IOException,
GeneralSecurityException;