Remove unnecessary final modifiers
See gh-38739
This commit is contained in:
committed by
Phillip Webb
parent
d3a51e56b7
commit
84f7c2dba9
@@ -169,7 +169,7 @@ abstract class AbstractJsonMarshalTesterTests {
|
||||
assertThat(tester.parse(MAP_JSON)).asMap().containsEntry("a", OBJECT);
|
||||
}
|
||||
|
||||
protected static final ExampleObject createExampleObject(String name, int age) {
|
||||
protected static ExampleObject createExampleObject(String name, int age) {
|
||||
ExampleObject exampleObject = new ExampleObject();
|
||||
exampleObject.setName(name);
|
||||
exampleObject.setAge(age);
|
||||
|
||||
Reference in New Issue
Block a user