private void addCompose(ValueSet retVal, String theSystem, String theCode, String theDisplay) {
   if (isBlank(theCode)) {
     return;
   }
   ExpansionContains contains = retVal.getExpansion().addContains();
   contains.setSystem(theSystem);
   contains.setCode(theCode);
   contains.setDisplay(theDisplay);
 }