diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AccumulatorOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AccumulatorOperators.java index c9a5a73c3..6698b932f 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AccumulatorOperators.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AccumulatorOperators.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ArithmeticOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ArithmeticOperators.java index 2fbc64304..6053f3ae1 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ArithmeticOperators.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ArithmeticOperators.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -644,7 +644,7 @@ public class ArithmeticOperators { /** * Add the value stored at the given field. - * + * * @param fieldReference must not be {@literal null}. * @return new instance of {@link Add}. */ @@ -656,7 +656,7 @@ public class ArithmeticOperators { /** * Add the evaluation result of the given {@link AggregationExpression}. - * + * * @param expression must not be {@literal null}. * @return new instance of {@link Add}. */ @@ -668,7 +668,7 @@ public class ArithmeticOperators { /** * Add the given value. - * + * * @param value must not be {@literal null}. * @return new instance of {@link Add}. */ @@ -784,7 +784,7 @@ public class ArithmeticOperators { /** * Divide by the value stored at the given field. - * + * * @param fieldReference must not be {@literal null}. * @return new instance of {@link Divide}. */ @@ -796,7 +796,7 @@ public class ArithmeticOperators { /** * Divide by the evaluation results of the given {@link AggregationExpression}. - * + * * @param expression must not be {@literal null}. * @return new instance of {@link Divide}. */ @@ -808,7 +808,7 @@ public class ArithmeticOperators { /** * Divide by the given value. - * + * * @param value must not be {@literal null}. * @return new instance of {@link Divide}. */ @@ -1030,7 +1030,7 @@ public class ArithmeticOperators { /** * Use the value stored at the given field as log base. - * + * * @param fieldReference must not be {@literal null}. * @return new instance of {@link Log}. */ @@ -1042,7 +1042,7 @@ public class ArithmeticOperators { /** * Use the evaluated value of the given {@link AggregationExpression} as log base. - * + * * @param expression must not be {@literal null}. * @return new instance of {@link Log}. */ @@ -1054,7 +1054,7 @@ public class ArithmeticOperators { /** * Use the given value as log base. - * + * * @param base must not be {@literal null}. * @return new instance of {@link Log}. */ @@ -1170,7 +1170,7 @@ public class ArithmeticOperators { /** * Use the value stored at the given field as mod base. - * + * * @param fieldReference must not be {@literal null}. * @return new instance of {@link Mod}. */ @@ -1182,7 +1182,7 @@ public class ArithmeticOperators { /** * Use evaluated value of the given {@link AggregationExpression} as mod base. - * + * * @param expression must not be {@literal null}. * @return new instance of {@link Mod}. */ @@ -1194,7 +1194,7 @@ public class ArithmeticOperators { /** * Use the given value as mod base. - * + * * @param base must not be {@literal null}. * @return new instance of {@link Mod}. */ @@ -1257,7 +1257,7 @@ public class ArithmeticOperators { /** * Multiply by the value stored at the given field. - * + * * @param fieldReference must not be {@literal null}. * @return new instance of {@link Multiply}. */ @@ -1269,7 +1269,7 @@ public class ArithmeticOperators { /** * Multiply by the evaluated value of the given {@link AggregationExpression}. - * + * * @param expression must not be {@literal null}. * @return new instance of {@link Multiply}. */ @@ -1281,7 +1281,7 @@ public class ArithmeticOperators { /** * Multiply by the given value. - * + * * @param value must not be {@literal null}. * @return new instance of {@link Multiply}. */ @@ -1344,7 +1344,7 @@ public class ArithmeticOperators { /** * Pow by the value stored at the given field. - * + * * @param fieldReference must not be {@literal null}. * @return new instance of {@link Pow}. */ @@ -1356,7 +1356,7 @@ public class ArithmeticOperators { /** * Pow by the evaluated value of the given {@link AggregationExpression}. - * + * * @param expression must not be {@literal null}. * @return new instance of {@link Pow}. */ @@ -1368,7 +1368,7 @@ public class ArithmeticOperators { /** * Pow by the given value. - * + * * @param value must not be {@literal null}. * @return new instance of {@link Pow}. */ @@ -1484,7 +1484,7 @@ public class ArithmeticOperators { /** * Subtract the value stored at the given field. - * + * * @param fieldReference must not be {@literal null}. * @return new instance of {@link Pow}. */ @@ -1496,7 +1496,7 @@ public class ArithmeticOperators { /** * Subtract the evaluated value of the given {@link AggregationExpression}. - * + * * @param expression must not be {@literal null}. * @return new instance of {@link Pow}. */ @@ -1508,7 +1508,7 @@ public class ArithmeticOperators { /** * Subtract the given value. - * + * * @param value must not be {@literal null}. * @return new instance of {@link Pow}. */ diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/BooleanOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/BooleanOperators.java index b651a8961..eaee42d96 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/BooleanOperators.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/BooleanOperators.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/DataTypeOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/DataTypeOperators.java index 9ce1f314f..fbc49ef08 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/DataTypeOperators.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/DataTypeOperators.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/LiteralOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/LiteralOperators.java index 062f823e3..f692008de 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/LiteralOperators.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/LiteralOperators.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -76,7 +76,7 @@ public class LiteralOperators { super(value); } - /* + /* * (non-Javadoc) * @see org.springframework.data.mongodb.core.aggregation.AbstractAggregationExpression#getMongoMethod() */ diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/NestedDelegatingExpressionAggregationOperationContext.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/NestedDelegatingExpressionAggregationOperationContext.java index 1aa4432ee..50afa5290 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/NestedDelegatingExpressionAggregationOperationContext.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/NestedDelegatingExpressionAggregationOperationContext.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/SetOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/SetOperators.java index 874ce7189..395b864e2 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/SetOperators.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/SetOperators.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/VariableOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/VariableOperators.java index a89ba122f..781a8794f 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/VariableOperators.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/VariableOperators.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/PartialIndexFilter.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/PartialIndexFilter.java index 7cc656d54..2b4505e94 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/PartialIndexFilter.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/PartialIndexFilter.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/spel/NotOperatorNode.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/spel/NotOperatorNode.java index 97df6afee..7a93a1f17 100644 --- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/spel/NotOperatorNode.java +++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/spel/NotOperatorNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2016. the original author or authors. + * Copyright 2016-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.