File tree 1 file changed +2
-2
lines changed
src/main/java/edu/harvard/dbmi/avillach/dictionary
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ public Concept populateParentConcepts(Concept concept) {
52
52
}
53
53
54
54
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 )) + "\\ " ;
57
57
Concept study = conceptService .conceptDetailWithoutAncestors (concept .dataset (), studyPath ).orElse (null );
58
58
Concept table = conceptService .conceptDetailWithoutAncestors (concept .dataset (), tablePath ).orElse (null );
59
59
return concept .withStudy (study ).withTable (table );
You can’t perform that action at this time.
0 commit comments