Fix IT compilation problem with recent merges (#297)

This commit is contained in:
Guillaume Nodet 2023-09-22 11:37:26 +02:00 committed by GitHub
parent c6d8f2fea6
commit f0fca33818
1 changed files with 5 additions and 0 deletions

View File

@ -48,4 +48,9 @@ public class PathSource implements Source {
public String getLocation() {
return path.toString();
}
@Override
public Source resolve(String s) {
return new PathSource(path.resolve(s));
}
}