Update hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/LoadedFileDescriptors.java
Co-authored-by: Diederik Muylwyk <diederik.muylwyk@gmail.com>
This commit is contained in:
parent
0f39eeb0e9
commit
e24e233ec6
|
@ -152,7 +152,7 @@ public class LoadedFileDescriptors implements Closeable {
|
|||
if (!LogicUtil.multiXor(multiPartFilesFound, singlePartFilesFound)) {
|
||||
String msg;
|
||||
if (!multiPartFilesFound && !singlePartFilesFound) {
|
||||
msg = "Could not find any of the PartLink files: " + notFoundMulti + " or " + notFoundSingle;
|
||||
msg = "Could not find any of the PartLink files: " + notFoundMulti + " nor " + notFoundSingle;
|
||||
} else {
|
||||
msg = "Found both the single PartLink file, " + theSinglePartLinkFile + ", and the split PartLink files: " + theMultiPartLinkFiles;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue