even more default capacities

This commit is contained in:
Ceikry 2021-03-12 21:23:46 -06:00
parent c25d85a28e
commit 4aaa1563e5
110 changed files with 147 additions and 147 deletions

View file

@ -42,7 +42,7 @@ public final class SQLTable {
* @return The columns.
*/
public List<SQLColumn> getChanged() {
List<SQLColumn> updated = new ArrayList<>();
List<SQLColumn> updated = new ArrayList<>(20);
for (int i = 0; i < columns.length; i++) {
SQLColumn column = columns[i];
if (column.isChanged()) {