Mark boost and subscription configuration as not null

This commit is contained in:
Ehren Kret 2021-10-28 16:12:23 -07:00
parent a52c91a665
commit ae7f8af03e
1 changed files with 2 additions and 2 deletions

View File

@ -317,12 +317,12 @@ public class WhisperServerConfiguration extends Configuration {
@Valid
@JsonProperty
// TODO: Mark as @NotNull when enabled for production.
@NotNull
private SubscriptionConfiguration subscription;
@Valid
@JsonProperty
// TODO: Mark as @NotNull when enabled for production.
@NotNull
private BoostConfiguration boost;
@Valid