Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assay/api-src/org/labkey/api/assay/plate/PlateService.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ static PlateService get()
*/
@Nullable Plate getPlate(ContainerFilter cf, Long plateSetId, Object plateIdentifier);

@NotNull List<Plate> getPlates(Container container);
@NotNull List<? extends Plate> getPlates(Container container);

/**
* Gets the plate set by ID
Expand Down
2 changes: 1 addition & 1 deletion assay/api-src/org/labkey/api/assay/plate/PlateSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public interface PlateSet extends Identifiable

boolean isTemplate();

List<Plate> getPlates();
List<? extends Plate> getPlates();

PlateSetType getType();

Expand Down
Loading
Loading