File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
webauthn-server-core/src/main/java/com/yubico/webauthn Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -142,36 +142,36 @@ static RegistrationResultBuilder.MandatoryStages builder() {
142
142
}
143
143
144
144
static class RegistrationResultBuilder {
145
- public static class MandatoryStages {
145
+ static class MandatoryStages {
146
146
private RegistrationResultBuilder builder = new RegistrationResultBuilder ();
147
147
148
- public Step2 keyId (PublicKeyCredentialDescriptor keyId ) {
148
+ Step2 keyId (PublicKeyCredentialDescriptor keyId ) {
149
149
builder .keyId (keyId );
150
150
return new Step2 ();
151
151
}
152
152
153
- public class Step2 {
154
- public Step3 attestationTrusted (boolean attestationTrusted ) {
153
+ class Step2 {
154
+ Step3 attestationTrusted (boolean attestationTrusted ) {
155
155
builder .attestationTrusted (attestationTrusted );
156
156
return new Step3 ();
157
157
}
158
158
}
159
159
160
- public class Step3 {
161
- public Step4 attestationType (AttestationType attestationType ) {
160
+ class Step3 {
161
+ Step4 attestationType (AttestationType attestationType ) {
162
162
builder .attestationType (attestationType );
163
163
return new Step4 ();
164
164
}
165
165
}
166
166
167
- public class Step4 {
168
- public RegistrationResultBuilder publicKeyCose (ByteArray publicKeyCose ) {
167
+ class Step4 {
168
+ RegistrationResultBuilder publicKeyCose (ByteArray publicKeyCose ) {
169
169
return builder .publicKeyCose (publicKeyCose );
170
170
}
171
171
}
172
172
}
173
173
174
- public RegistrationResultBuilder attestationMetadata (@ NonNull Optional <Attestation > attestationMetadata ) {
174
+ RegistrationResultBuilder attestationMetadata (@ NonNull Optional <Attestation > attestationMetadata ) {
175
175
this .attestationMetadata = attestationMetadata .orElse (null );
176
176
return this ;
177
177
}
You can’t perform that action at this time.
0 commit comments