We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66cc648 commit d4d84ecCopy full SHA for d4d84ec
webauthn-server-core/src/main/java/com/yubico/webauthn/data/RegistrationResult.java
@@ -7,6 +7,7 @@
7
import java.util.List;
8
import java.util.Optional;
9
import lombok.Builder;
10
+import lombok.Builder.Default;
11
import lombok.NonNull;
12
import lombok.Value;
13
@@ -27,7 +28,8 @@ public class RegistrationResult {
27
28
private final ByteArray publicKeyCose;
29
30
@NonNull
- private final List<String> warnings;
31
+ @Builder.Default
32
+ private final List<String> warnings = Collections.emptyList();
33
34
35
@Builder.Default
0 commit comments