mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-02 19:30:23 +01:00
Fix binding of spring.mongodb.representation.uuid
See gh-47654 Signed-off-by: Johnny Lim <izeye@naver.com>
This commit is contained in:
committed by
Stéphane Nicoll
parent
6cebe3aca4
commit
a10e4baa9a
+2
-2
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user