Fix checkstyle violation

See gh-31323
This commit is contained in:
Phillip Webb 2022-07-19 11:51:44 +01:00
parent df381c51be
commit 00ec17b418
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ class PropertyMapperTests {
this.age = age; this.age = age;
} }
public Immutable withAge(Integer age) { Immutable withAge(Integer age) {
return new Immutable(this.name, age); return new Immutable(this.name, age);
} }