mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 17:08:23 +01:00
Drop the UUID addressing capability flag entirely.
This commit is contained in:
committed by
Jon Chambers
parent
a567f4a6de
commit
ebc3a251b7
@@ -3,23 +3,15 @@ package org.whispersystems.textsecuregcm.entities;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class UserCapabilities {
|
||||
@JsonProperty
|
||||
private boolean uuid;
|
||||
|
||||
@JsonProperty
|
||||
private boolean gv2;
|
||||
|
||||
public UserCapabilities() {}
|
||||
|
||||
public UserCapabilities(boolean uuid, boolean gv2) {
|
||||
this.uuid = uuid;
|
||||
public UserCapabilities(boolean gv2) {
|
||||
this.gv2 = gv2;
|
||||
}
|
||||
|
||||
public boolean isUuid() {
|
||||
return uuid;
|
||||
}
|
||||
|
||||
public boolean isGv2() {
|
||||
return gv2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user