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:
IanMMarshall 2020-10-07 11:01:47 -04:00 committed by GitHub
parent 0f39eeb0e9
commit e24e233ec6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}