From d11c624fb024289d04d16a9f2ebf7c0960ee6e27 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Tue, 12 Jul 2016 14:47:18 +0200 Subject: [PATCH] Polish AntPathMatcher.setTrimTokens javadoc Issue: SPR-14247 Cherry-picked from 147a35f --- .../src/main/java/org/springframework/util/AntPathMatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-core/src/main/java/org/springframework/util/AntPathMatcher.java b/spring-core/src/main/java/org/springframework/util/AntPathMatcher.java index 2d050218ec1..5e91704bbe7 100644 --- a/spring-core/src/main/java/org/springframework/util/AntPathMatcher.java +++ b/spring-core/src/main/java/org/springframework/util/AntPathMatcher.java @@ -132,7 +132,7 @@ public class AntPathMatcher implements PathMatcher { /** * Specify whether to trim tokenized paths and patterns. - *

Default is {@code true}. + *

Default is {@code false}. */ public void setTrimTokens(boolean trimTokens) { this.trimTokens = trimTokens;