From 658bedfe05ea01626ce32fd1a17c838af657e174 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 16 Oct 2025 14:48:24 +0900 Subject: [PATCH] Fix setter for MongoProperties.Representation.uuid See gh-47052 Signed-off-by: Johnny Lim --- .../boot/mongodb/autoconfigure/MongoProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoProperties.java b/module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoProperties.java index 78447bb640d1..cae688a005aa 100644 --- a/module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoProperties.java +++ b/module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoProperties.java @@ -218,8 +218,8 @@ public UuidRepresentation getUuid() { return this.uuid; } - public void setUuidRepresentation(UuidRepresentation uuidRepresentation) { - this.uuid = uuidRepresentation; + public void setUuid(UuidRepresentation uuid) { + this.uuid = uuid; } }