File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
webauthn-server-core/src/main/java/com/yubico/webauthn/data Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,12 @@ public boolean getCredProps() {
118
118
return credProps != null && credProps ;
119
119
}
120
120
121
+ /** For JSON serialization, to omit false values. */
122
+ @ JsonProperty ("credProps" )
123
+ private Boolean getCredPropsJson () {
124
+ return getCredProps () ? true : null ;
125
+ }
126
+
121
127
/**
122
128
* @return The Credential Protection (<code>credProtect</code>) extension input, if set.
123
129
* @since 2.7.0
@@ -131,12 +137,6 @@ public Optional<Extensions.CredentialProtection.CredentialProtectionInput> getCr
131
137
return Optional .ofNullable (credProtect );
132
138
}
133
139
134
- /** For JSON serialization, to omit false values. */
135
- @ JsonProperty ("credProps" )
136
- private Boolean getCredPropsJson () {
137
- return getCredProps () ? true : null ;
138
- }
139
-
140
140
/**
141
141
* @return The value of the Large blob storage extension (<code>largeBlob</code>) input if
142
142
* configured, empty otherwise.
You can’t perform that action at this time.
0 commit comments