Skip to content

Commit

Permalink
[ NCITERM-875] Missing logical definition in the relationship tab.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimong committed Dec 23, 2021
1 parent 607173c commit 6575df3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
Binary file modified software/browser-util/browser-util.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -903,6 +903,8 @@ public String generateRelationshipTable(String codingScheme, String version, Str
try {
equivalanceClass = new CodingSchemeDataUtils(lbSvc).getEquivalenceExpression(codingScheme, version, code, namespace);
if (equivalanceClass != null) {
//KLO, 12232021
equivalanceClass = equivalanceClass.replace("ncit:", "");
display_equiv_expression = true;
}
} catch (Exception ex) {
Expand Down
Binary file modified software/junit-test/browser-util.jar
Binary file not shown.
Binary file modified software/ncitbrowser/extlib/browser-util.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ public class DataUtils {

// ==================================================================================
// PROD - set to true; for development - set to false for testing to speed up the initialization time
private static boolean initializeValueSetHierarchy = true;
public static boolean cache_maps_to = true;
private static boolean initializeValueSetHierarchy = false;
public static boolean cache_maps_to = false;

// ==================================================================================

Expand Down

0 comments on commit 6575df3

Please sign in to comment.