Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions webauthn/spring-security-webauthn.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
plugins {
id 'compile-warnings-error'
id 'security-nullability'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ void setup() {
}

@Test
@SuppressWarnings("removal")
void setConverterWhenNullThenIllegalArgumentException() {
assertThatIllegalArgumentException()
.isThrownBy(() -> this.filter.setConverter((GenericHttpMessageConverter<Object>) null));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
*
* @author Rob Winch
*/
@SuppressWarnings("removal")
class CredProtectAuthenticationExtensionsClientInputJackson2Tests {

private ObjectMapper mapper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@

import static org.assertj.core.api.Assertions.assertThat;

@SuppressWarnings("removal")
class Jackson2Tests {

private ObjectMapper mapper;
Expand Down
Loading