Remove redundant @NotNull annotation
This commit is contained in:
parent
3b99bb9e78
commit
7d171a79d7
|
@ -6,10 +6,9 @@
|
||||||
package org.whispersystems.textsecuregcm.configuration;
|
package org.whispersystems.textsecuregcm.configuration;
|
||||||
|
|
||||||
import javax.validation.constraints.NotEmpty;
|
import javax.validation.constraints.NotEmpty;
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
|
|
||||||
public record AdminEventLoggingConfiguration(
|
public record AdminEventLoggingConfiguration(
|
||||||
@NotNull @NotEmpty String credentials,
|
@NotEmpty String credentials,
|
||||||
@NotNull @NotEmpty String projectId,
|
@NotEmpty String projectId,
|
||||||
@NotNull @NotEmpty String logName) {
|
@NotEmpty String logName) {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue