Jeffrey Morlan
Jeffrey Morlan
In Selection.js renderArray: ``` for (i = 0; i < rows.length; i++) { row = this.row(rows[i]); selected = row.id in selection ? selection[row.id] : this.allSelected; if (selected) { this.select(row, null,...
### Describe the bug When handling a response with a body, if an `ExecutionInterceptor.modifyHttpResponse` or `ExecutionInterceptor.modifyHttpResponseContent` method throws an exception, the HTTP connection is never closed. ### Expected Behavior Any...
Explicit use of `.iterator()`/`.next()` is checked correctly (if `Iterator` is null-marked by LibraryModels), but the equivalent for-each loop is not: ```java void use(Integer x) {} void f1(Iterable list) { for...