Skip to content

Commit d2f301e

Browse files
committed
Remove spurious final class modifiers
These are already implied by the `@Value` Lombok annotation - the explicit modifier probably appeared when we used delombok to generate the new constructors. (Most) other classes in the repo don't have the explicit `final` modifier, so let's leave it out here too so it doesn't seem like these classes are different.
1 parent 28bcbb0 commit d2f301e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webauthn-server-core/src/main/java/com/yubico/webauthn/StartAssertionOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/** Parameters for {@link RelyingParty#startAssertion(StartAssertionOptions)}. */
4141
@Value
4242
@Builder(toBuilder = true)
43-
public final class StartAssertionOptions {
43+
public class StartAssertionOptions {
4444

4545
private final String username;
4646

webauthn-server-core/src/main/java/com/yubico/webauthn/StartRegistrationOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/** Parameters for {@link RelyingParty#startRegistration(StartRegistrationOptions)}. */
4141
@Value
4242
@Builder(toBuilder = true)
43-
public final class StartRegistrationOptions {
43+
public class StartRegistrationOptions {
4444

4545
/** Identifiers for the user creating a credential. */
4646
@NonNull private final UserIdentity user;

0 commit comments

Comments
 (0)