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() {
142142 }
143143
144144 static class RegistrationResultBuilder {
145- public static class MandatoryStages {
145+ static class MandatoryStages {
146146 private RegistrationResultBuilder builder = new RegistrationResultBuilder ();
147147
148- public Step2 keyId (PublicKeyCredentialDescriptor keyId ) {
148+ Step2 keyId (PublicKeyCredentialDescriptor keyId ) {
149149 builder .keyId (keyId );
150150 return new Step2 ();
151151 }
152152
153- public class Step2 {
154- public Step3 attestationTrusted (boolean attestationTrusted ) {
153+ class Step2 {
154+ Step3 attestationTrusted (boolean attestationTrusted ) {
155155 builder .attestationTrusted (attestationTrusted );
156156 return new Step3 ();
157157 }
158158 }
159159
160- public class Step3 {
161- public Step4 attestationType (AttestationType attestationType ) {
160+ class Step3 {
161+ Step4 attestationType (AttestationType attestationType ) {
162162 builder .attestationType (attestationType );
163163 return new Step4 ();
164164 }
165165 }
166166
167- public class Step4 {
168- public RegistrationResultBuilder publicKeyCose (ByteArray publicKeyCose ) {
167+ class Step4 {
168+ RegistrationResultBuilder publicKeyCose (ByteArray publicKeyCose ) {
169169 return builder .publicKeyCose (publicKeyCose );
170170 }
171171 }
172172 }
173173
174- public RegistrationResultBuilder attestationMetadata (@ NonNull Optional <Attestation > attestationMetadata ) {
174+ RegistrationResultBuilder attestationMetadata (@ NonNull Optional <Attestation > attestationMetadata ) {
175175 this .attestationMetadata = attestationMetadata .orElse (null );
176176 return this ;
177177 }
You can’t perform that action at this time.
0 commit comments