Upgrade to spring-javaformat 0.0.43

Closes gh-41853
This commit is contained in:
Moritz Halbritter
2024-08-14 12:32:42 +02:00
parent b43d97b359
commit 1d45016d8c
34 changed files with 38 additions and 23 deletions

View File

@@ -482,7 +482,7 @@ public class CassandraProperties {
/**
* No compression.
*/
NONE;
NONE
}

View File

@@ -224,7 +224,7 @@ public class JacksonProperties {
* Refuse to decide implicit mode and instead throw an InvalidDefinitionException
* for ambiguous cases.
*/
EXPLICIT_ONLY;
EXPLICIT_ONLY
}

View File

@@ -463,6 +463,7 @@ public class ServerProperties {
/**
* Whether to reject requests with illegal header names or values.
* @deprecated since 2.7.12 for removal in 3.3.0
*/
@Deprecated(since = "2.7.12", forRemoval = true) // Remove in 3.3
private boolean rejectIllegalHeader = true;

View File

@@ -41,6 +41,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Moritz Halbritter
* @author Andy Wilkinson
* @author Phillip Webb
* @deprecated since 3.2.0 for removal in 3.4.0
*/
@SuppressWarnings("removal")
@Deprecated(since = "3.2.0", forRemoval = true)

View File

@@ -33,7 +33,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* @author Andy Wilkinson
*/
public class LiquibasePropertiesTests {
class LiquibasePropertiesTests {
@Test
void valuesOfShowSummaryMatchValuesOfUpdateSummaryEnum() {

View File

@@ -31,6 +31,7 @@ import static org.assertj.core.api.Assertions.assertThat;
* Tests for {@link MongoPropertiesClientSettingsBuilderCustomizer}.
*
* @author Scott Frederick
* @deprecated since 3.1.0 for removal in 3.3.0
*/
@Deprecated(since = "3.1.0", forRemoval = true)
class MongoPropertiesClientSettingsBuilderCustomizerTests {