From 43b9c48923bcb1c7d065cba56bffd63588c3aeba Mon Sep 17 00:00:00 2001 From: Jeff Yemin Date: Mon, 7 Feb 2022 14:25:07 -0500 Subject: [PATCH] Add missing javadoc of return value for CodecRegistries#withUuidRepresentation --- bson/src/main/org/bson/codecs/configuration/CodecRegistries.java | 1 + 1 file changed, 1 insertion(+) diff --git a/bson/src/main/org/bson/codecs/configuration/CodecRegistries.java b/bson/src/main/org/bson/codecs/configuration/CodecRegistries.java index 7ee2bc41457..a848936302c 100644 --- a/bson/src/main/org/bson/codecs/configuration/CodecRegistries.java +++ b/bson/src/main/org/bson/codecs/configuration/CodecRegistries.java @@ -37,6 +37,7 @@ public final class CodecRegistries { * * @param codecRegistry the code registry * @param uuidRepresentation the uuid representation + * @return a {@code CodecRegistry} with the given {@code UuidRepresentation} applied to the given {@code CodecRegistry} * @since 4.5 */ public static CodecRegistry withUuidRepresentation(final CodecRegistry codecRegistry, final UuidRepresentation uuidRepresentation) {