Fix binding of spring.mongodb.representation.uuid

See gh-47654

Signed-off-by: Johnny Lim <izeye@naver.com>
This commit is contained in:
Johnny Lim
2025-10-16 14:48:24 +09:00
committed by Stéphane Nicoll
parent 6cebe3aca4
commit a10e4baa9a
@@ -218,8 +218,8 @@ public class MongoProperties {
return this.uuid;
}
public void setUuidRepresentation(UuidRepresentation uuidRepresentation) {
this.uuid = uuidRepresentation;
public void setUuid(UuidRepresentation uuid) {
this.uuid = uuid;
}
}