Skip to content

Commit bc46602

Browse files
committed
Fix typo in parameter name
1 parent 6f11711 commit bc46602

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
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.
@@ -164,8 +164,8 @@ public void setValueSeparator(@Nullable String valueSeparator) {
164164
* <p>Default is {@link #DEFAULT_ESCAPE_CHARACTER}.
165165
* @since 6.2
166166
*/
167-
public void setEscapeCharacter(@Nullable Character escsEscapeCharacter) {
168-
this.escapeCharacter = escsEscapeCharacter;
167+
public void setEscapeCharacter(@Nullable Character escapeCharacter) {
168+
this.escapeCharacter = escapeCharacter;
169169
}
170170

171171
/**

0 commit comments

Comments
 (0)