Suppress "removal" warnings in CronSequenceGeneratorTests

This commit is contained in:
Sam Brannen
2022-11-16 10:32:37 +01:00
parent befa4b14cd
commit d0d5730f7f

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2019 the original author or authors.
* Copyright 2002-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException
* @author Juergen Hoeller
* @author Ruslan Sibgatullin
*/
@SuppressWarnings("deprecation")
@SuppressWarnings({ "removal", "deprecation" })
public class CronSequenceGeneratorTests {
@Test