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 e28a5a3 commit c2b0392Copy full SHA for c2b0392
boat-engine/src/main/java/com/backbase/oss/boat/transformers/bundler/ExamplesProcessor.java
@@ -232,7 +232,7 @@ private String readContent(Path path) throws IOException {
232
233
private URI resolveUri(String relativePath, String refPath) {
234
if (relativePath == null) {
235
- return rootUri.resolve(removeTrainingDotSlash(refPath));
+ return rootUri.resolve(removeLeadingDotSlash(refPath));
236
} else {
237
return rootUri.resolve(checkTrailingSlash(relativePath.replace("\\", "/")))
238
.resolve(refPath.replace("\\", "/"));
0 commit comments