mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-01 14:13:22 +01:00
Stop reading the PNP capability.
This commit is contained in:
@@ -192,18 +192,14 @@ public class SignalServiceProfile {
|
||||
@JsonProperty
|
||||
private boolean storage;
|
||||
|
||||
@JsonProperty
|
||||
private boolean pnp;
|
||||
|
||||
@JsonProperty
|
||||
private boolean paymentActivation;
|
||||
|
||||
@JsonCreator
|
||||
public Capabilities() {}
|
||||
|
||||
public Capabilities(boolean storage, boolean pnp, boolean paymentActivation) {
|
||||
public Capabilities(boolean storage, boolean paymentActivation) {
|
||||
this.storage = storage;
|
||||
this.pnp = pnp;
|
||||
this.paymentActivation = paymentActivation;
|
||||
}
|
||||
|
||||
@@ -211,10 +207,6 @@ public class SignalServiceProfile {
|
||||
return storage;
|
||||
}
|
||||
|
||||
public boolean isPnp() {
|
||||
return pnp;
|
||||
}
|
||||
|
||||
public boolean isPaymentActivation() {
|
||||
return paymentActivation;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user