From 577890aa2ca263a1a130e7a65bdc4e4ce148b4e9 Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 13:48:57 -0400 Subject: [PATCH 01/15] DOCSP-42961: Removed Nested Components --- .../connection/mongoclientsettings.txt | 24 +++++++------------ .../data-formats/pojo-customization.txt | 24 ++++++------------- 2 files changed, 16 insertions(+), 32 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index 4f1ade7ee..8794a3a7e 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -259,22 +259,16 @@ settings to modify the driver's behavior: * - ``serverSelector()`` - Adds a server selector to apply before server selection. - + * - ``srvHost()`` - - Sets the host name to use to look up an SRV DNS record to find the - MongoDB hosts. - - .. note:: - - When setting ``srvHost``, the driver does not process any - associated TXT records associated with the host. - - If you want to enable the processing of TXT records, you must - specify the SRV host in the connection string using the - ``applyConnectionString()`` method. - - .. code-block:: java - :emphasize-lines: 3 + - | Sets the host name to use to look up an SRV DNS record to find the + MongoDB hosts. When setting ``srvHost``, the driver does not process any associated + TXT records associated with the host. If you want to enable the processing of TXT records, + you must specify the SRV host in the connection string + using the ``applyConnectionString()`` method. + + | .. code-block:: java + :emphasize-lines: 3 MongoClient mongoClient = MongoClients.create( MongoClientSettings.builder() diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index eb79ee05a..4d7ccc7c1 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -285,11 +285,7 @@ package: * - ``BsonRepresentation`` - Specifies the BSON type used to store the value when different from the - POJO property. - - .. seealso:: - - :ref:`bsonrepresentation-annotation-code-example` + POJO property. :ref:`bsonrepresentation-annotation-code-example` * - ``BsonId`` - Marks a property to serialize as the _id property. @@ -301,13 +297,9 @@ package: * - ``BsonProperty`` - Specifies a custom document field name when converting the POJO field to BSON. You can include a discriminator to serialize POJOs - nested within the field. - - .. important:: - - When applying ``@BsonProperty`` to a private field, you must also add - getter and setter methods for that field to serialize and customize - the field name. + nested within the field. When applying ``@BsonProperty`` to a private field, + **you must also add getter and setter methods for that field to serialize and + customize the field name**. * - ``BsonExtraElements`` - Specifies the POJO field on which to deserialize all elements that are @@ -316,11 +308,9 @@ package: - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ - - ``Map`` - - .. seealso:: - - :ref:`BsonExtraElements Annotation Example ` + - ``Map`` + + :ref:`BsonExtraElements Annotation Example ` The following code snippet shows a sample POJO called ``Product`` that uses several of the preceding annotations. From a54e6036da658847088fa0d35f05ba1ce17ccb45 Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 14:10:33 -0400 Subject: [PATCH 02/15] Fixing indentation errors --- source/fundamentals/connection/mongoclientsettings.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index 8794a3a7e..dbe82c4d6 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -266,10 +266,9 @@ settings to modify the driver's behavior: TXT records associated with the host. If you want to enable the processing of TXT records, you must specify the SRV host in the connection string using the ``applyConnectionString()`` method. - - | .. code-block:: java - :emphasize-lines: 3 - + | + .. code-block:: java + :emphasize-lines: 3 MongoClient mongoClient = MongoClients.create( MongoClientSettings.builder() .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) From 8fb5894146bf8daab52110fd5d70312d1dac48ba Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 14:17:56 -0400 Subject: [PATCH 03/15] Fixing indentation errors again --- source/fundamentals/connection/mongoclientsettings.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index dbe82c4d6..a65e9e280 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -269,7 +269,7 @@ settings to modify the driver's behavior: | .. code-block:: java :emphasize-lines: 3 - MongoClient mongoClient = MongoClients.create( + MongoClient mongoClient = MongoClients.create( MongoClientSettings.builder() .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) From 6b40e8943d26a74c96717035940b3c4b0293dfc0 Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 14:22:49 -0400 Subject: [PATCH 04/15] Fixing indentation errors again --- source/fundamentals/connection/mongoclientsettings.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index a65e9e280..3d0ac2db2 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -266,7 +266,6 @@ settings to modify the driver's behavior: TXT records associated with the host. If you want to enable the processing of TXT records, you must specify the SRV host in the connection string using the ``applyConnectionString()`` method. - | .. code-block:: java :emphasize-lines: 3 MongoClient mongoClient = MongoClients.create( From 07a82f5959fe721cd049ef1afc38b1bd43b1feeb Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 14:44:25 -0400 Subject: [PATCH 05/15] Fixing indentation errors again --- .../fundamentals/connection/mongoclientsettings.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index 3d0ac2db2..dec2f7314 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -266,11 +266,12 @@ settings to modify the driver's behavior: TXT records associated with the host. If you want to enable the processing of TXT records, you must specify the SRV host in the connection string using the ``applyConnectionString()`` method. - .. code-block:: java - :emphasize-lines: 3 - MongoClient mongoClient = MongoClients.create( - MongoClientSettings.builder() - .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) + | For example: + .. code-block:: java + :emphasize-lines: 3 + MongoClient mongoClient = MongoClients.create( + MongoClientSettings.builder() + .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) * - ``srvMaxHosts()`` - | Sets the maximum number of hosts the driver can connect to when using From 7103e2fc26bd8ac6cbbd564b14a6ff6e587080cf Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 14:53:14 -0400 Subject: [PATCH 06/15] Fixing indentation errors again+ --- .../fundamentals/connection/mongoclientsettings.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index dec2f7314..317da0a12 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -266,12 +266,13 @@ settings to modify the driver's behavior: TXT records associated with the host. If you want to enable the processing of TXT records, you must specify the SRV host in the connection string using the ``applyConnectionString()`` method. - | For example: - .. code-block:: java - :emphasize-lines: 3 - MongoClient mongoClient = MongoClients.create( - MongoClientSettings.builder() - .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) + | + | For example: + .. code-block:: java + :emphasize-lines: 3 + MongoClient mongoClient = MongoClients.create( + MongoClientSettings.builder() + .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) * - ``srvMaxHosts()`` - | Sets the maximum number of hosts the driver can connect to when using From 19bdf641f6189fe034e57f36e69e3ef33f57902b Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 15:00:35 -0400 Subject: [PATCH 07/15] Fixing indentation errors again+ --- .../fundamentals/connection/mongoclientsettings.txt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index 317da0a12..6747efea4 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -268,11 +268,12 @@ settings to modify the driver's behavior: using the ``applyConnectionString()`` method. | | For example: - .. code-block:: java - :emphasize-lines: 3 - MongoClient mongoClient = MongoClients.create( - MongoClientSettings.builder() - .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) + + .. code-block:: java + :emphasize-lines: 3 + MongoClient mongoClient = + MongoClients.create(MongoClientSettings.builder() + .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) * - ``srvMaxHosts()`` - | Sets the maximum number of hosts the driver can connect to when using From 38db0692c7a41df7586fe54d8240f3432f6d0179 Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Fri, 18 Oct 2024 15:07:08 -0400 Subject: [PATCH 08/15] Fixing code block indentation --- source/fundamentals/connection/mongoclientsettings.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index 6747efea4..9eabb2605 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -270,10 +270,11 @@ settings to modify the driver's behavior: | For example: .. code-block:: java - :emphasize-lines: 3 - MongoClient mongoClient = - MongoClients.create(MongoClientSettings.builder() - .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) + :emphasize-lines: 3 + + MongoClient mongoClient = + MongoClients.create(MongoClientSettings.builder() + .applyConnectionString(new ConnectionString("mongodb+srv://host1.acme.com"))) * - ``srvMaxHosts()`` - | Sets the maximum number of hosts the driver can connect to when using From 4f85b13c84f5d2498e6b4c58e83c3222cd176dac Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Tue, 22 Oct 2024 13:07:26 -0400 Subject: [PATCH 09/15] tweaks based on internal review feedback --- source/fundamentals/connection/mongoclientsettings.txt | 9 +++++---- source/fundamentals/data-formats/pojo-customization.txt | 8 +++++--- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index 9eabb2605..55bd80d5f 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -262,10 +262,11 @@ settings to modify the driver's behavior: * - ``srvHost()`` - | Sets the host name to use to look up an SRV DNS record to find the - MongoDB hosts. When setting ``srvHost``, the driver does not process any associated - TXT records associated with the host. If you want to enable the processing of TXT records, - you must specify the SRV host in the connection string - using the ``applyConnectionString()`` method. + MongoDB hosts. + | + | If you want to enable the processing of TXT records associated with the host, + specify the SRV host in the connection string + using the ``applyConnectionString()`` method. | | For example: diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index 4d7ccc7c1..39d0621fd 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -285,7 +285,7 @@ package: * - ``BsonRepresentation`` - Specifies the BSON type used to store the value when different from the - POJO property. :ref:`bsonrepresentation-annotation-code-example` + POJO property. See an example of :ref:`bsonrepresentation-annotation-code-example` on this page. * - ``BsonId`` - Marks a property to serialize as the _id property. @@ -297,7 +297,9 @@ package: * - ``BsonProperty`` - Specifies a custom document field name when converting the POJO field to BSON. You can include a discriminator to serialize POJOs - nested within the field. When applying ``@BsonProperty`` to a private field, + nested within the field. + | + | When applying ``@BsonProperty`` to a private field, **you must also add getter and setter methods for that field to serialize and customize the field name**. @@ -310,7 +312,7 @@ package: - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ - ``Map`` - :ref:`BsonExtraElements Annotation Example ` + | See an example of :ref:`BsonExtraElements Annotation Example ` The following code snippet shows a sample POJO called ``Product`` that uses several of the preceding annotations. From 75f858501d211901cb99132bf4be23958567921c Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Tue, 22 Oct 2024 13:19:39 -0400 Subject: [PATCH 10/15] tweaks based on internal review feedback - indentation issues --- source/fundamentals/connection/mongoclientsettings.txt | 4 ++-- .../fundamentals/data-formats/pojo-customization.txt | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index 55bd80d5f..aa5146a8d 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -267,8 +267,8 @@ settings to modify the driver's behavior: | If you want to enable the processing of TXT records associated with the host, specify the SRV host in the connection string using the ``applyConnectionString()`` method. - | - | For example: + | + | For example: .. code-block:: java :emphasize-lines: 3 diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index 39d0621fd..bc7db0c56 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -298,11 +298,13 @@ package: - Specifies a custom document field name when converting the POJO field to BSON. You can include a discriminator to serialize POJOs nested within the field. - | - | When applying ``@BsonProperty`` to a private field, + + | + | When applying ``@BsonProperty`` to a private field, **you must also add getter and setter methods for that field to serialize and customize the field name**. + * - ``BsonExtraElements`` - Specifies the POJO field on which to deserialize all elements that are not mapped to a field. The POJO field must be one of the following @@ -310,8 +312,8 @@ package: - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ - - ``Map`` - + - ``Map`` + | See an example of :ref:`BsonExtraElements Annotation Example ` The following code snippet shows a sample POJO called ``Product`` that uses From 4262df6669cfd00847396da129038bdd541dc5ee Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Tue, 22 Oct 2024 13:30:09 -0400 Subject: [PATCH 11/15] tweaks based on internal review feedback - indentation issues --- .../connection/mongoclientsettings.txt | 12 +++++----- .../data-formats/pojo-customization.txt | 22 ++++++++----------- 2 files changed, 15 insertions(+), 19 deletions(-) diff --git a/source/fundamentals/connection/mongoclientsettings.txt b/source/fundamentals/connection/mongoclientsettings.txt index aa5146a8d..154cec5c6 100644 --- a/source/fundamentals/connection/mongoclientsettings.txt +++ b/source/fundamentals/connection/mongoclientsettings.txt @@ -263,12 +263,12 @@ settings to modify the driver's behavior: * - ``srvHost()`` - | Sets the host name to use to look up an SRV DNS record to find the MongoDB hosts. - | - | If you want to enable the processing of TXT records associated with the host, - specify the SRV host in the connection string - using the ``applyConnectionString()`` method. - | - | For example: + | + | If you want to enable the processing of TXT records associated with the host, + specify the SRV host in the connection string + using the ``applyConnectionString()`` method. + | + | For example: .. code-block:: java :emphasize-lines: 3 diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index bc7db0c56..a14120120 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -297,24 +297,20 @@ package: * - ``BsonProperty`` - Specifies a custom document field name when converting the POJO field to BSON. You can include a discriminator to serialize POJOs - nested within the field. - - | - | When applying ``@BsonProperty`` to a private field, + nested within the field. When applying ``@BsonProperty`` to a private field, **you must also add getter and setter methods for that field to serialize and customize the field name**. * - ``BsonExtraElements`` - - Specifies the POJO field on which to deserialize all elements that are - not mapped to a field. The POJO field must be one of the following - types: - - - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ - - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ - - ``Map`` - - | See an example of :ref:`BsonExtraElements Annotation Example ` + - | Specifies the POJO field on which to deserialize all elements that are + not mapped to a field. The POJO field must be one of the following + types: + - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ + - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ + - ``Map`` + | + | See an example of :ref:`BsonExtraElements Annotation Example ` The following code snippet shows a sample POJO called ``Product`` that uses several of the preceding annotations. From 697f184c2bb04f3ecf6cc8ee2a43da1b2429345b Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Tue, 22 Oct 2024 13:35:18 -0400 Subject: [PATCH 12/15] tweaks based on internal review feedback - indentation issues --- .../data-formats/pojo-customization.txt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index a14120120..b07b5efbd 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -295,11 +295,13 @@ package: and/or deserialize a property. * - ``BsonProperty`` - - Specifies a custom document field name when converting the POJO - field to BSON. You can include a discriminator to serialize POJOs - nested within the field. When applying ``@BsonProperty`` to a private field, - **you must also add getter and setter methods for that field to serialize and - customize the field name**. + - | Specifies a custom document field name when converting the POJO + field to BSON. You can include a discriminator to serialize POJOs + nested within the field. + | + | When applying ``@BsonProperty`` to a private field, + **you must also add getter and setter methods for that field to serialize and + customize the field name**. * - ``BsonExtraElements`` @@ -310,7 +312,7 @@ package: - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ - ``Map`` | - | See an example of :ref:`BsonExtraElements Annotation Example ` + | See an example of :ref:`BsonExtraElements Annotation Example `. The following code snippet shows a sample POJO called ``Product`` that uses several of the preceding annotations. From 3ebef66a50784339773462d31a015ba6bb8a161c Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Tue, 22 Oct 2024 16:16:34 -0400 Subject: [PATCH 13/15] tweaks based on internal review feedback - indentation issues --- source/fundamentals/data-formats/pojo-customization.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index b07b5efbd..9ad59f365 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -308,11 +308,11 @@ package: - | Specifies the POJO field on which to deserialize all elements that are not mapped to a field. The POJO field must be one of the following types: - - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ - - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ - - ``Map`` + - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ + - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ + - ``Map`` | - | See an example of :ref:`BsonExtraElements Annotation Example `. + | See an example of a :ref:`BsonExtraElements Annotation Example `. The following code snippet shows a sample POJO called ``Product`` that uses several of the preceding annotations. From 646b22e7bd7089af66f31c708ffaac73af1ca5a6 Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Tue, 22 Oct 2024 16:23:23 -0400 Subject: [PATCH 14/15] tweaks to bullet issue --- source/fundamentals/data-formats/pojo-customization.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index 9ad59f365..01da1ca8a 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -308,9 +308,10 @@ package: - | Specifies the POJO field on which to deserialize all elements that are not mapped to a field. The POJO field must be one of the following types: - - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ - - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ - - ``Map`` + | + | - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ + | - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ + | - ``Map`` | | See an example of a :ref:`BsonExtraElements Annotation Example `. From 9a899e727a7b9d9f3c75e622efa084dc66207455 Mon Sep 17 00:00:00 2001 From: caitlindavey Date: Tue, 22 Oct 2024 16:27:07 -0400 Subject: [PATCH 15/15] tweaks to bullet issue --- source/fundamentals/data-formats/pojo-customization.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/source/fundamentals/data-formats/pojo-customization.txt b/source/fundamentals/data-formats/pojo-customization.txt index 01da1ca8a..ea54ddce4 100644 --- a/source/fundamentals/data-formats/pojo-customization.txt +++ b/source/fundamentals/data-formats/pojo-customization.txt @@ -308,7 +308,6 @@ package: - | Specifies the POJO field on which to deserialize all elements that are not mapped to a field. The POJO field must be one of the following types: - | | - `Document <{+api+}/apidocs/bson/org/bson/Document.html>`__ | - `BsonDocument <{+api+}/apidocs/bson/org/bson/BsonDocument.html>`__ | - ``Map``