+++ /dev/null
-package org.asamk.signal.manager;
-
-import static org.asamk.signal.manager.KeyUtils.getSecretBytes;
-
-public class GroupIdV1 extends GroupId {
-
- public static GroupIdV1 createRandom() {
- return new GroupIdV1(getSecretBytes(16));
- }
-
- public GroupIdV1(final byte[] id) {
- super(id);
- }
-}