Skip to content

Commit 580e25d

Browse files
author
Luke Sikina
committed
5
1 parent 5482952 commit 580e25d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/edu/harvard/dbmi/avillach/dictionary/ConceptDecoratorService.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public Concept populateParentConcepts(Concept concept) {
5252
}
5353

5454
private Concept populateTabledConcept(Concept concept, List<String> conceptNodes) {
55-
String studyPath = String.join("\\", conceptNodes.subList(0, 1)) + "\\";
56-
String tablePath = String.join("\\", conceptNodes.subList(0, 2)) + "\\";
55+
String studyPath = "\\" + String.join("\\", conceptNodes.subList(0, 1)) + "\\";
56+
String tablePath = "\\" + String.join("\\", conceptNodes.subList(0, 2)) + "\\";
5757
Concept study = conceptService.conceptDetailWithoutAncestors(concept.dataset(), studyPath).orElse(null);
5858
Concept table = conceptService.conceptDetailWithoutAncestors(concept.dataset(), tablePath).orElse(null);
5959
return concept.withStudy(study).withTable(table);

0 commit comments

Comments
 (0)