File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
spring-web/src/main/java/org/springframework/web/util/pattern Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public class PathPatternParser {
43
43
44
44
45
45
/**
46
- * Whether a {@link PathPattern} produced by this parser should
46
+ * Configure whether a {@link PathPattern} produced by this parser should
47
47
* automatically match request paths with a trailing slash.
48
48
* <p>If set to {@code true} a {@code PathPattern} without a trailing slash
49
49
* will also match request paths with a trailing slash. If set to
@@ -70,7 +70,7 @@ public boolean isMatchOptionalTrailingSeparator() {
70
70
}
71
71
72
72
/**
73
- * Whether path pattern matching should be case-sensitive.
73
+ * Configure whether path pattern matching should be case-sensitive.
74
74
* <p>The default is {@code true}.
75
75
*/
76
76
public void setCaseSensitive (boolean caseSensitive ) {
@@ -96,7 +96,7 @@ public void setPathOptions(PathContainer.Options pathOptions) {
96
96
}
97
97
98
98
/**
99
- * Return the {@link #setPathOptions configured} pattern parsing options.
99
+ * Get the {@link #setPathOptions configured} pattern parsing options.
100
100
* @since 5.2
101
101
*/
102
102
public PathContainer .Options getPathOptions () {
@@ -160,5 +160,7 @@ private void raiseError() {
160
160
throw new UnsupportedOperationException (
161
161
"This is a read-only, shared instance that cannot be modified" );
162
162
}
163
+
163
164
};
165
+
164
166
}
You can’t perform that action at this time.
0 commit comments