Skip to content

Commit a10e4ba

Browse files
izeyesnicoll
authored andcommitted
Fix binding of spring.mongodb.representation.uuid
See gh-47654 Signed-off-by: Johnny Lim <[email protected]>
1 parent 6cebe3a commit a10e4ba

File tree

1 file changed

+2
-2
lines changed
  • module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure

1 file changed

+2
-2
lines changed

module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ public UuidRepresentation getUuid() {
218218
return this.uuid;
219219
}
220220

221-
public void setUuidRepresentation(UuidRepresentation uuidRepresentation) {
222-
this.uuid = uuidRepresentation;
221+
public void setUuid(UuidRepresentation uuid) {
222+
this.uuid = uuid;
223223
}
224224

225225
}

0 commit comments

Comments
 (0)