We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c11270 commit 4f63047Copy full SHA for 4f63047
spring-webmvc/src/test/java/org/springframework/web/servlet/resource/PathResourceResolverTests.java
@@ -183,21 +183,19 @@ private static class TestUrlResource extends UrlResource {
183
184
private String relativePath;
185
186
-
187
public TestUrlResource(String path) throws MalformedURLException {
188
super(path);
189
}
190
191
192
- public String getSavedRelativePath() {
193
- return this.relativePath;
194
- }
195
196
@Override
197
public Resource createRelative(String relativePath) {
198
this.relativePath = relativePath;
199
return this;
200
+
+ public String getSavedRelativePath() {
+ return this.relativePath;
+ }
201
202
203
0 commit comments