Skip to content

Commit 4303150

Browse files
izeyesbrannen
authored andcommitted
Update versions in Javadoc
Closes gh-30170
1 parent e66c806 commit 4303150

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

spring-expression/src/main/java/org/springframework/expression/spel/SpelMessage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,11 @@ public enum SpelMessage {
266266
MAX_ARRAY_ELEMENTS_THRESHOLD_EXCEEDED(Kind.ERROR, 1075,
267267
"Array declares too many elements, exceeding the threshold of ''{0}''"),
268268

269-
/** @since 5.3.26 */
269+
/** @since 5.2.23 */
270270
MAX_REPEATED_TEXT_SIZE_EXCEEDED(Kind.ERROR, 1076,
271271
"Repeated text results in too many characters, exceeding the threshold of ''{0}''"),
272272

273-
/** @since 5.3.26 */
273+
/** @since 5.2.23 */
274274
MAX_REGEX_LENGTH_EXCEEDED(Kind.ERROR, 1077,
275275
"Regular expression contains too many characters, exceeding the threshold of ''{0}''");
276276

spring-expression/src/main/java/org/springframework/expression/spel/ast/OpMultiply.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class OpMultiply extends Operator {
5656

5757
/**
5858
* Maximum number of characters permitted in repeated text.
59-
* @since 5.3.26
59+
* @since 5.2.23
6060
*/
6161
private static final int MAX_REPEATED_TEXT_SIZE = 256;
6262

spring-expression/src/main/java/org/springframework/expression/spel/ast/OperatorMatches.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class OperatorMatches extends Operator {
4545

4646
/**
4747
* Maximum number of characters permitted in a regular expression.
48-
* @since 5.3.26
48+
* @since 5.2.23
4949
*/
5050
private static final int MAX_REGEX_LENGTH = 256;
5151

@@ -54,18 +54,18 @@ public class OperatorMatches extends Operator {
5454

5555
/**
5656
* Create a new {@link OperatorMatches} instance.
57-
* @deprecated as of Spring Framework 5.3.26 in favor of invoking
57+
* @deprecated as of Spring Framework 5.2.23 in favor of invoking
5858
* {@link #OperatorMatches(ConcurrentMap, int, int, SpelNodeImpl...)}
5959
* with a shared pattern cache instead
6060
*/
61-
@Deprecated(since = "5.3.26")
61+
@Deprecated(since = "5.2.23")
6262
public OperatorMatches(int startPos, int endPos, SpelNodeImpl... operands) {
6363
this(new ConcurrentHashMap<>(), startPos, endPos, operands);
6464
}
6565

6666
/**
6767
* Create a new {@link OperatorMatches} instance with a shared pattern cache.
68-
* @since 5.3.26
68+
* @since 5.2.23
6969
*/
7070
public OperatorMatches(ConcurrentMap<String, Pattern> patternCache, int startPos, int endPos, SpelNodeImpl... operands) {
7171
super("matches", startPos, endPos, operands);

0 commit comments

Comments
 (0)