Skip to content
Merged
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
5 changes: 5 additions & 0 deletions api/src/org/labkey/api/query/DefaultQueryUpdateService.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
import org.labkey.api.security.permissions.Permission;
import org.labkey.api.security.permissions.UpdatePermission;
import org.labkey.api.util.Pair;
import org.labkey.api.view.NotFoundException;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be trimmed now.

import org.labkey.api.view.UnauthorizedException;
import org.springframework.web.multipart.MultipartFile;

Expand Down Expand Up @@ -254,6 +255,10 @@ protected Map<String, Object> _select(Container container, Object[] keys) throws
}
}
}
else
{
throw new IllegalStateException("LSID value not found in table - " + table.getName());
}
}

return row;
Expand Down