Update outdated Javadoc for PathPatternParser.defaultInstance
Spring Framework 6.0 changed the default value of matchOptionalTrailingSeparator from true to false. Closes gh-30976
This commit is contained in:
parent
3ff81a47c9
commit
9ba5622efd
|
@ -131,11 +131,12 @@ public class PathPatternParser {
|
|||
|
||||
|
||||
/**
|
||||
* Shared, read-only instance of {@code PathPatternParser}. Uses default settings:
|
||||
* Shared, read-only instance of {@code PathPatternParser}.
|
||||
* <p>Uses default settings:
|
||||
* <ul>
|
||||
* <li>{@code matchOptionalTrailingSeparator=true}
|
||||
* <li>{@code caseSensitivetrue}
|
||||
* <li>{@code pathOptions=PathContainer.Options.HTTP_PATH}
|
||||
* <li>{@code matchOptionalTrailingSeparator = false}
|
||||
* <li>{@code caseSensitive = true}
|
||||
* <li>{@code pathOptions = PathContainer.Options.HTTP_PATH}
|
||||
* </ul>
|
||||
*/
|
||||
public final static PathPatternParser defaultInstance = new PathPatternParser() {
|
||||
|
|
Loading…
Reference in New Issue