Stop reading the PNP capability.

This commit is contained in:
Greyson Parrelli
2024-04-01 12:29:51 -04:00
parent c904a7aa97
commit 6c697fad8b
10 changed files with 4 additions and 27 deletions

View File

@@ -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;
}