minor refactoring

This commit is contained in:
dashevchenko 2024-01-09 19:10:59 +02:00
parent e94a7e6cf7
commit 192951d4eb

View File

@ -144,8 +144,8 @@ public class CachedAttributesService implements AttributesService {
}
@Override
public ListenableFuture<List<AttributeKvEntry>> find(TenantId tenantId, EntityId entityId, String scope, Collection<String> attributeKeys) {
return find(tenantId, entityId, AttributeScope.valueOf(scope), attributeKeys);
public ListenableFuture<List<AttributeKvEntry>> find(TenantId tenantId, EntityId entityId, String scope, final Collection<String> attributeKeysNonUnique) {
return find(tenantId, entityId, AttributeScope.valueOf(scope), attributeKeysNonUnique);
}
@Override