mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
Preliminaries for private group invitation protocol.
This commit is contained in:
@@ -2,7 +2,6 @@ package org.briarproject.api.clients;
|
||||
|
||||
import org.briarproject.api.nullsafety.NotNullByDefault;
|
||||
import org.briarproject.api.sync.Group;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import javax.annotation.concurrent.Immutable;
|
||||
|
||||
@@ -13,7 +12,7 @@ public abstract class NamedGroup extends BaseGroup {
|
||||
private final String name;
|
||||
private final byte[] salt;
|
||||
|
||||
public NamedGroup(@NotNull Group group, @NotNull String name, byte[] salt) {
|
||||
public NamedGroup(Group group, String name, byte[] salt) {
|
||||
super(group);
|
||||
this.name = name;
|
||||
this.salt = salt;
|
||||
|
||||
Reference in New Issue
Block a user