From ae7f8af03e4d7f4bf97b5a8baf2dca05de0740b5 Mon Sep 17 00:00:00 2001 From: Ehren Kret Date: Thu, 28 Oct 2021 16:12:23 -0700 Subject: [PATCH] Mark boost and subscription configuration as not null --- .../textsecuregcm/WhisperServerConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service/src/main/java/org/whispersystems/textsecuregcm/WhisperServerConfiguration.java b/service/src/main/java/org/whispersystems/textsecuregcm/WhisperServerConfiguration.java index dea017b4d..400a2a06f 100644 --- a/service/src/main/java/org/whispersystems/textsecuregcm/WhisperServerConfiguration.java +++ b/service/src/main/java/org/whispersystems/textsecuregcm/WhisperServerConfiguration.java @@ -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