Remove redundant @NotNull annotation

This commit is contained in:
Ehren Kret 2022-09-07 12:24:27 -05:00
parent 3b99bb9e78
commit 7d171a79d7
1 changed files with 3 additions and 4 deletions

View File

@ -6,10 +6,9 @@
package org.whispersystems.textsecuregcm.configuration;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
public record AdminEventLoggingConfiguration(
@NotNull @NotEmpty String credentials,
@NotNull @NotEmpty String projectId,
@NotNull @NotEmpty String logName) {
@NotEmpty String credentials,
@NotEmpty String projectId,
@NotEmpty String logName) {
}