Skip to content

Commit c0bd5e0

Browse files
authored
Eliminate class-loading deadlock warning in ContainerFilter (#220)
1 parent 6056b36 commit c0bd5e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

viscstudies/src/org/labkey/viscstudies/ProjectStudiesTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public ProjectStudiesTable(ViscStudySchema schema, TableInfo studyTable)
4444
ContainerFilter containerFilter = ContainerFilter.Type.CurrentAndSubfolders.create(getUserSchema());
4545
((ContainerFilterable)studyTable).setContainerFilter(containerFilter);
4646
// don't need to apply the same container filter twice and the inner table already has the CF applied
47-
applyContainerFilter(ContainerFilter.EVERYTHING_UNSAFE);
47+
applyContainerFilter(ContainerFilter.getUnsafeEverythingFilter());
4848

4949
for (ColumnInfo col : getRealTable().getColumns())
5050
{

0 commit comments

Comments
 (0)