Remove zkgroup enabled flag

The last remnants of a time before zkgroup have been swept away.
This commit is contained in:
Ehren Kret
2021-09-23 09:24:06 -05:00
parent 02a296e500
commit 041aed2d72
4 changed files with 3 additions and 17 deletions

View File

@@ -26,10 +26,6 @@ public class ZkConfig {
@NotNull
private byte[] serverPublic;
@JsonProperty
@NotNull
private Boolean enabled;
public byte[] getServerSecret() {
return serverSecret;
}
@@ -37,8 +33,4 @@ public class ZkConfig {
public byte[] getServerPublic() {
return serverPublic;
}
public boolean isEnabled() {
return enabled;
}
}