Fixed relative path handling within CodeService.

This commit is contained in:
David Russell 2017-06-01 07:34:20 +00:00
parent 549d8e9869
commit 63894f248d

View File

@ -96,12 +96,6 @@ public class CodeService {
String delim = mdm.extractCodeDelim(md);
codePath = md.substring(delim.length());
if (!mdm.linkAbsolute(codePath)) {
codePath =
new StringBuffer(gitRawBase).append(codePath)
.toString();
}
} catch (Exception pex) {
log.warn("extractCodePath: ex={}", pex);
}