File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
webauthn-server-attestation/src/main/java/com/yubico/fido/metadata Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 16
16
* `findEntries` and `findTrustRoots` methods in `FidoMetadataService` now
17
17
attempt to read AAGUID from the attestation certificate if the `aaguid`
18
18
argument is absent or zero.
19
+ * Method `FidoMetadataService.Filters.allOf` now has `@SafeVarargs` annotation.
19
20
20
21
21
22
== Version 2.3.0 ==
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ subprojects { project ->
144
144
}
145
145
146
146
tasks. withType(JavaCompile ) {
147
+ options. compilerArgs + = ' -Xlint:unchecked'
147
148
options. deprecation = true
148
149
options. encoding = ' UTF-8'
149
150
}
Original file line number Diff line number Diff line change @@ -351,6 +351,7 @@ public static class Filters {
351
351
* @return A filter which only accepts inputs that satisfy ALL of the given <code>
352
352
* filters</code>.
353
353
*/
354
+ @ SafeVarargs
354
355
public static <T > Predicate <T > allOf (Predicate <T >... filters ) {
355
356
return (entry ) -> Stream .of (filters ).allMatch (filter -> filter .test (entry ));
356
357
}
You can’t perform that action at this time.
0 commit comments