diff --git a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java index 612c556e7..34762062b 100644 --- a/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java +++ b/org.hl7.fhir.validation/src/main/java/org/hl7/fhir/validation/cli/model/CliContext.java @@ -588,6 +588,7 @@ public class CliContext { Objects.equals(txServer, that.txServer) && Objects.equals(sv, that.sv) && Objects.equals(txLog, that.txLog) && + Objects.equals(txCache, that.txCache) && Objects.equals(mapLog, that.mapLog) && Objects.equals(lang, that.lang) && Objects.equals(fhirpath, that.fhirpath) && @@ -610,7 +611,7 @@ public class CliContext { @Override public int hashCode() { return Objects.hash(doNative, anyExtensionsAllowed, hintAboutNonMustSupport, recursive, doDebug, assumeValidRestReferences, canDoNative, noInternalCaching, - noExtensibleBindingMessages, noInvariants, wantInvariantsInMessages, map, output, htmlOutput, txServer, sv, txLog, mapLog, lang, fhirpath, snomedCT, + noExtensibleBindingMessages, noInvariants, wantInvariantsInMessages, map, output, htmlOutput, txServer, sv, txLog, txCache, mapLog, lang, fhirpath, snomedCT, targetVer, igs, questionnaireMode, level, profiles, sources, mode, locale, locations, crumbTrails, showTimes, allowExampleUrls, outputStyle, noUnicodeBiDiControlChars); } @@ -635,6 +636,7 @@ public class CliContext { ", txServer='" + txServer + '\'' + ", sv='" + sv + '\'' + ", txLog='" + txLog + '\'' + + ", txCache='" + txCache + '\'' + ", mapLog='" + mapLog + '\'' + ", lang='" + lang + '\'' + ", fhirpath='" + fhirpath + '\'' +