Polishing

This commit is contained in:
Juergen Hoeller
2025-07-25 22:40:15 +02:00
parent 3c112703d9
commit 4f6304707d
@@ -183,21 +183,19 @@ class PathResourceResolverTests {
private String relativePath;
public TestUrlResource(String path) throws MalformedURLException {
super(path);
}
public String getSavedRelativePath() {
return this.relativePath;
}
@Override
public Resource createRelative(String relativePath) {
this.relativePath = relativePath;
return this;
}
public String getSavedRelativePath() {
return this.relativePath;
}
}
}