Skip to content

Commit

Permalink
Assay: resolve a single provider/protocol before creating protocol sc…
Browse files Browse the repository at this point in the history
…hema

- avoids costly creation of AssayProtocolSchema of each assay defined in a container
  • Loading branch information
labkey-nicka committed Nov 15, 2024
1 parent 333a5b8 commit 42c8610
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion flow/src/org/labkey/flow/data/FlowAssayProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,13 @@ public List<ParticipantVisitResolverType> getParticipantVisitResolverTypes()
}

@Override
public List<Pair<Domain, Map<DomainProperty, Object>>> getDomains(ExpProtocol protocol)
public @NotNull List<Domain> getDomains(ExpProtocol protocol)
{
return Collections.emptyList();
}

@Override
public @NotNull List<Pair<Domain, Map<DomainProperty, Object>>> getDomainsAndDefaultValues(ExpProtocol protocol)
{
return Collections.emptyList();
}
Expand Down

0 comments on commit 42c8610

Please sign in to comment.