Skip to content

Commit b8298ed

Browse files
committed
DATAMONGO-2671 - Polishing.
Fix copyright header. Original pull request: #897.
1 parent 3277673 commit b8298ed

10 files changed

+32
-32
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

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

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -644,7 +644,7 @@ public static Add valueOf(Number value) {
644644

645645
/**
646646
* Add the value stored at the given field.
647-
*
647+
*
648648
* @param fieldReference must not be {@literal null}.
649649
* @return new instance of {@link Add}.
650650
*/
@@ -656,7 +656,7 @@ public Add add(String fieldReference) {
656656

657657
/**
658658
* Add the evaluation result of the given {@link AggregationExpression}.
659-
*
659+
*
660660
* @param expression must not be {@literal null}.
661661
* @return new instance of {@link Add}.
662662
*/
@@ -668,7 +668,7 @@ public Add add(AggregationExpression expression) {
668668

669669
/**
670670
* Add the given value.
671-
*
671+
*
672672
* @param value must not be {@literal null}.
673673
* @return new instance of {@link Add}.
674674
*/
@@ -784,7 +784,7 @@ public static Divide valueOf(Number value) {
784784

785785
/**
786786
* Divide by the value stored at the given field.
787-
*
787+
*
788788
* @param fieldReference must not be {@literal null}.
789789
* @return new instance of {@link Divide}.
790790
*/
@@ -796,7 +796,7 @@ public Divide divideBy(String fieldReference) {
796796

797797
/**
798798
* Divide by the evaluation results of the given {@link AggregationExpression}.
799-
*
799+
*
800800
* @param expression must not be {@literal null}.
801801
* @return new instance of {@link Divide}.
802802
*/
@@ -808,7 +808,7 @@ public Divide divideBy(AggregationExpression expression) {
808808

809809
/**
810810
* Divide by the given value.
811-
*
811+
*
812812
* @param value must not be {@literal null}.
813813
* @return new instance of {@link Divide}.
814814
*/
@@ -1030,7 +1030,7 @@ public static Log valueOf(Number value) {
10301030

10311031
/**
10321032
* Use the value stored at the given field as log base.
1033-
*
1033+
*
10341034
* @param fieldReference must not be {@literal null}.
10351035
* @return new instance of {@link Log}.
10361036
*/
@@ -1042,7 +1042,7 @@ public Log log(String fieldReference) {
10421042

10431043
/**
10441044
* Use the evaluated value of the given {@link AggregationExpression} as log base.
1045-
*
1045+
*
10461046
* @param expression must not be {@literal null}.
10471047
* @return new instance of {@link Log}.
10481048
*/
@@ -1054,7 +1054,7 @@ public Log log(AggregationExpression expression) {
10541054

10551055
/**
10561056
* Use the given value as log base.
1057-
*
1057+
*
10581058
* @param base must not be {@literal null}.
10591059
* @return new instance of {@link Log}.
10601060
*/
@@ -1170,7 +1170,7 @@ public static Mod valueOf(Number value) {
11701170

11711171
/**
11721172
* Use the value stored at the given field as mod base.
1173-
*
1173+
*
11741174
* @param fieldReference must not be {@literal null}.
11751175
* @return new instance of {@link Mod}.
11761176
*/
@@ -1182,7 +1182,7 @@ public Mod mod(String fieldReference) {
11821182

11831183
/**
11841184
* Use evaluated value of the given {@link AggregationExpression} as mod base.
1185-
*
1185+
*
11861186
* @param expression must not be {@literal null}.
11871187
* @return new instance of {@link Mod}.
11881188
*/
@@ -1194,7 +1194,7 @@ public Mod mod(AggregationExpression expression) {
11941194

11951195
/**
11961196
* Use the given value as mod base.
1197-
*
1197+
*
11981198
* @param base must not be {@literal null}.
11991199
* @return new instance of {@link Mod}.
12001200
*/
@@ -1257,7 +1257,7 @@ public static Multiply valueOf(Number value) {
12571257

12581258
/**
12591259
* Multiply by the value stored at the given field.
1260-
*
1260+
*
12611261
* @param fieldReference must not be {@literal null}.
12621262
* @return new instance of {@link Multiply}.
12631263
*/
@@ -1269,7 +1269,7 @@ public Multiply multiplyBy(String fieldReference) {
12691269

12701270
/**
12711271
* Multiply by the evaluated value of the given {@link AggregationExpression}.
1272-
*
1272+
*
12731273
* @param expression must not be {@literal null}.
12741274
* @return new instance of {@link Multiply}.
12751275
*/
@@ -1281,7 +1281,7 @@ public Multiply multiplyBy(AggregationExpression expression) {
12811281

12821282
/**
12831283
* Multiply by the given value.
1284-
*
1284+
*
12851285
* @param value must not be {@literal null}.
12861286
* @return new instance of {@link Multiply}.
12871287
*/
@@ -1344,7 +1344,7 @@ public static Pow valueOf(Number value) {
13441344

13451345
/**
13461346
* Pow by the value stored at the given field.
1347-
*
1347+
*
13481348
* @param fieldReference must not be {@literal null}.
13491349
* @return new instance of {@link Pow}.
13501350
*/
@@ -1356,7 +1356,7 @@ public Pow pow(String fieldReference) {
13561356

13571357
/**
13581358
* Pow by the evaluated value of the given {@link AggregationExpression}.
1359-
*
1359+
*
13601360
* @param expression must not be {@literal null}.
13611361
* @return new instance of {@link Pow}.
13621362
*/
@@ -1368,7 +1368,7 @@ public Pow pow(AggregationExpression expression) {
13681368

13691369
/**
13701370
* Pow by the given value.
1371-
*
1371+
*
13721372
* @param value must not be {@literal null}.
13731373
* @return new instance of {@link Pow}.
13741374
*/
@@ -1484,7 +1484,7 @@ public static Subtract valueOf(Number value) {
14841484

14851485
/**
14861486
* Subtract the value stored at the given field.
1487-
*
1487+
*
14881488
* @param fieldReference must not be {@literal null}.
14891489
* @return new instance of {@link Pow}.
14901490
*/
@@ -1496,7 +1496,7 @@ public Subtract subtract(String fieldReference) {
14961496

14971497
/**
14981498
* Subtract the evaluated value of the given {@link AggregationExpression}.
1499-
*
1499+
*
15001500
* @param expression must not be {@literal null}.
15011501
* @return new instance of {@link Pow}.
15021502
*/
@@ -1508,7 +1508,7 @@ public Subtract subtract(AggregationExpression expression) {
15081508

15091509
/**
15101510
* Subtract the given value.
1511-
*
1511+
*
15121512
* @param value must not be {@literal null}.
15131513
* @return new instance of {@link Pow}.
15141514
*/

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -76,7 +76,7 @@ private Literal(Object value) {
7676
super(value);
7777
}
7878

79-
/*
79+
/*
8080
* (non-Javadoc)
8181
* @see org.springframework.data.mongodb.core.aggregation.AbstractAggregationExpression#getMongoMethod()
8282
*/

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/index/PartialIndexFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/spel/NotOperatorNode.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016. the original author or authors.
2+
* Copyright 2016-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)