We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d812a08 commit 52d2c95Copy full SHA for 52d2c95
hapi-fhir-jpaserver-test-r4/src/test/java/ca/uhn/fhir/jpa/bulk/BulkDataExportTest.java
@@ -454,7 +454,7 @@ public void testBulkExportParametersPersistExtraData() {
454
String value = "value_";
455
options.setUserData(key, value);
456
457
- List<String> valueSet = new ArrayList<>();
+ List<String> valueSet = Collections.synchronizedList(new ArrayList<>());
458
Object interceptor = new Object() {
459
@Hook(Pointcut.STORAGE_BULK_EXPORT_RESOURCE_INCLUSION)
460
public void onExpandResources(IBaseResource theBaseResource, BulkExportJobParameters theParams) {
0 commit comments