|
21 | 21 | import org.apache.commons.collections4.MapUtils; |
22 | 22 | import org.apache.commons.lang3.StringUtils; |
23 | 23 | import org.apache.commons.lang3.Strings; |
24 | | -import org.apache.logging.log4j.Level; |
25 | 24 | import org.jetbrains.annotations.NotNull; |
26 | 25 | import org.jetbrains.annotations.Nullable; |
27 | | -import org.labkey.api.attachments.AttachmentFile; |
28 | | -import org.labkey.api.attachments.AttachmentParent; |
29 | 26 | import org.labkey.api.attachments.AttachmentParentFactory; |
30 | | -import org.labkey.api.attachments.AttachmentService; |
31 | | -import org.labkey.api.audit.TransactionAuditProvider; |
32 | 27 | import org.labkey.api.collections.CaseInsensitiveHashMap; |
33 | 28 | import org.labkey.api.collections.CaseInsensitiveHashSet; |
34 | 29 | import org.labkey.api.collections.Sets; |
|
125 | 120 | import org.labkey.api.util.PageFlowUtil; |
126 | 121 | import org.labkey.api.util.Pair; |
127 | 122 | import org.labkey.api.util.StringExpressionFactory; |
128 | | -import org.labkey.api.util.UnexpectedException; |
129 | 123 | import org.labkey.api.view.ActionURL; |
130 | 124 | import org.labkey.api.view.UnauthorizedException; |
131 | 125 | import org.labkey.api.view.ViewContext; |
|
138 | 132 |
|
139 | 133 | import java.io.IOException; |
140 | 134 | import java.io.UncheckedIOException; |
141 | | -import java.nio.file.Path; |
142 | 135 | import java.sql.SQLException; |
143 | 136 | import java.util.ArrayList; |
144 | 137 | import java.util.Arrays; |
|
149 | 142 | import java.util.LinkedHashSet; |
150 | 143 | import java.util.List; |
151 | 144 | import java.util.Map; |
152 | | -import java.util.Objects; |
153 | 145 | import java.util.Set; |
154 | 146 | import java.util.function.Supplier; |
155 | 147 | import java.util.stream.Collectors; |
|
159 | 151 | import static org.labkey.api.exp.query.ExpDataClassDataTable.Column.Name; |
160 | 152 | import static org.labkey.api.exp.query.ExpDataClassDataTable.Column.QueryableInputs; |
161 | 153 | import static org.labkey.api.exp.query.ExpDataClassDataTable.Column.RowId; |
162 | | -import static org.labkey.api.exp.query.ExpMaterialTable.Column.LSID; |
| 154 | +import static org.labkey.api.exp.query.ExpDataClassDataTable.Column.LSID; |
163 | 155 | import static org.labkey.api.query.DefaultQueryUpdateService.getKeyColumnAliasForUpdate; |
164 | 156 | import static org.labkey.experiment.ExpDataIterators.incrementCounts; |
165 | 157 |
|
@@ -1439,7 +1431,7 @@ public List<Map<String, Object>> updateRows(User user, Container container, List |
1439 | 1431 |
|
1440 | 1432 | List<Map<String, Object>> results; |
1441 | 1433 | Map<Enum, Object> finalConfigParameters = configParameters == null ? new HashMap<>() : configParameters; |
1442 | | - recordDataIteratorUsed(configParameters); |
| 1434 | + recordDataIteratorUsed(finalConfigParameters); |
1443 | 1435 |
|
1444 | 1436 | try |
1445 | 1437 | { |
|
0 commit comments