Skip to content

Commit 964d674

Browse files
committed
Merge branch '6.2.x'
2 parents 4a99fa8 + 8599ee6 commit 964d674

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/config/PlaceholderConfigurerSupport.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2024 the original author or authors.
2+
* Copyright 2002-2025 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.
@@ -160,8 +160,8 @@ public void setValueSeparator(@Nullable String valueSeparator) {
160160
* <p>Default is {@link #DEFAULT_ESCAPE_CHARACTER}.
161161
* @since 6.2
162162
*/
163-
public void setEscapeCharacter(@Nullable Character escsEscapeCharacter) {
164-
this.escapeCharacter = escsEscapeCharacter;
163+
public void setEscapeCharacter(@Nullable Character escapeCharacter) {
164+
this.escapeCharacter = escapeCharacter;
165165
}
166166

167167
/**

spring-core/src/main/java/org/springframework/core/env/AbstractPropertyResolver.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2024 the original author or authors.
2+
* Copyright 2002-2025 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.
@@ -123,7 +123,7 @@ public void setValueSeparator(@Nullable String valueSeparator) {
123123
* Specify the escape character to use to ignore placeholder prefix
124124
* or value separator, or {@code null} if no escaping should take
125125
* place.
126-
* <p>The default is "\".
126+
* <p>The default is '\'.
127127
* @since 6.2
128128
* @see org.springframework.util.SystemPropertyUtils#ESCAPE_CHARACTER
129129
*/

0 commit comments

Comments
 (0)