This commit is contained in:
Brenin Rhodes 2024-04-25 08:10:46 -06:00
parent 4f48bce959
commit e8d49fedaf
3 changed files with 3 additions and 0 deletions

View File

@ -184,6 +184,7 @@ public class PrefetchTemplateBuilderDstu3 extends BasePrefetchTemplateBuilder {
return result;
}
@SuppressWarnings("ReassignedVariable")
protected StringBuilder getCodesStringBuilder(
List<String> theStrings, StringBuilder theCodes, String theSystem, String theCode) {
String codeToken = theSystem + "|" + theCode;

View File

@ -172,6 +172,7 @@ public class PrefetchTemplateBuilderR4 extends BasePrefetchTemplateBuilder {
return result;
}
@SuppressWarnings("ReassignedVariable")
protected StringBuilder getCodesStringBuilder(
List<String> theStrings, StringBuilder theCodes, String system, String theCode) {
String codeToken = system + "|" + theCode;

View File

@ -173,6 +173,7 @@ public class PrefetchTemplateBuilderR5 extends BasePrefetchTemplateBuilder {
return result;
}
@SuppressWarnings("ReassignedVariable")
protected StringBuilder getCodesStringBuilder(
List<String> theStrings, StringBuilder theCodes, String theSystem, String theCode) {
String codeToken = theSystem + "|" + theCode;