Skip to content

Commit 362de45

Browse files
committedDec 16, 2016
DATAMONGO-1533 - Polishing.
Extend JavaDoc. Minor reformatting. Original pull request: spring-projects#428.
1 parent b731789 commit 362de45

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AggregationSpELExpression.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private AggregationSpELExpression(String rawExpression, Object[] parameters) {
5353
/**
5454
* Creates new {@link AggregationSpELExpression} for the given {@literal expressionString} and {@literal parameters}.
5555
*
56-
* @param expression must not be {@literal null}.
56+
* @param expressionString must not be {@literal null}.
5757
* @param parameters can be empty.
5858
* @return
5959
*/
@@ -63,6 +63,9 @@ public static AggregationSpELExpression expressionOf(String expressionString, Ob
6363
return new AggregationSpELExpression(expressionString, parameters);
6464
}
6565

66+
/* (non-Javadoc)
67+
* @see org.springframework.data.mongodb.core.aggregation.AggregationExpression#toDbObject(org.springframework.data.mongodb.core.aggregation.AggregationOperationContext)
68+
*/
6669
@Override
6770
public Document toDocument(AggregationOperationContext context) {
6871
return (Document) TRANSFORMER.transform(rawExpression, context, parameters);

0 commit comments

Comments
 (0)
Please sign in to comment.