You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by dr...@apache.org on 2020/03/29 15:55:14 UTC

[gora] branch master updated: GORA-649 Fix issues on Javadoc comments

This is an automated email from the ASF dual-hosted git repository.

drazzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
     new bdf5f00  GORA-649 Fix issues on Javadoc comments
bdf5f00 is described below

commit bdf5f0096d2447ad1a93b1119cebf4297133850c
Author: Damien Raude-Morvan <dr...@drazzib.com>
AuthorDate: Sun Mar 29 17:54:58 2020 +0200

    GORA-649 Fix issues on Javadoc comments
---
 .../src/main/java/org/apache/gora/mongodb/utils/BSONDecorator.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gora-mongodb/src/main/java/org/apache/gora/mongodb/utils/BSONDecorator.java b/gora-mongodb/src/main/java/org/apache/gora/mongodb/utils/BSONDecorator.java
index 56680a9..419af5b 100644
--- a/gora-mongodb/src/main/java/org/apache/gora/mongodb/utils/BSONDecorator.java
+++ b/gora-mongodb/src/main/java/org/apache/gora/mongodb/utils/BSONDecorator.java
@@ -87,10 +87,10 @@ public class BSONDecorator {
   }
 
   /**
-   * Access field as a {@link List<Document>}.
+   * Access field as a collection of {@link Document}.
    *
    * @param fieldName fully qualified name of the field to be accessed
-   * @return value of the field as a {@link List<Document>}
+   * @return value of the field as a collection of {@link Document}
    */
   public List<Document> getDBList(String fieldName) {
     return (List<Document>) getFieldParent(fieldName).get(getLeafName(fieldName));