Skip to content

Commit c2b0392

Browse files
committed
Fix method name
1 parent e28a5a3 commit c2b0392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boat-engine/src/main/java/com/backbase/oss/boat/transformers/bundler/ExamplesProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ private String readContent(Path path) throws IOException {
232232

233233
private URI resolveUri(String relativePath, String refPath) {
234234
if (relativePath == null) {
235-
return rootUri.resolve(removeTrainingDotSlash(refPath));
235+
return rootUri.resolve(removeLeadingDotSlash(refPath));
236236
} else {
237237
return rootUri.resolve(checkTrailingSlash(relativePath.replace("\\", "/")))
238238
.resolve(refPath.replace("\\", "/"));

0 commit comments

Comments
 (0)