From 7bed1264b13fbfe7c5448b6c21b6feb310154bbd Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Tue, 31 May 2011 22:54:21 -0400 Subject: [PATCH] DATADOC-157 - changed order parameters are declared for JavaDoc --- .../data/document/mongodb/MongoOperations.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/MongoOperations.java b/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/MongoOperations.java index 70f86df9f..26c2b4063 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/MongoOperations.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/MongoOperations.java @@ -489,12 +489,12 @@ public interface MongoOperations { /** * Updates the first object that is found in the default collection that matches the query document with the provided * updated document. - * @param entityClass - * class that determines the collection to use * @param queryDoc * the query document that specifies the criteria used to select a record to be updated * @param updateDoc * the update document that contains the updated object or $ operators to manipulate the existing object. + * @param entityClass + * class that determines the collection to use */ WriteResult updateFirst(Query query, Update update, Class entityClass); @@ -514,12 +514,12 @@ public interface MongoOperations { /** * Updates all objects that are found in the default collection that matches the query document criteria with the * provided updated document. - * @param entityClass - * class that determines the collection to use * @param queryDoc * the query document that specifies the criteria used to select a record to be updated * @param updateDoc * the update document that contains the updated object or $ operators to manipulate the existing object. + * @param entityClass + * class that determines the collection to use */ WriteResult updateMulti(Query query, Update update, Class entityClass);