Skip to content

Commit

Permalink
Fix for fordfrog#144
Browse files Browse the repository at this point in the history
  • Loading branch information
avbasov committed Mar 29, 2016
1 parent 71d48ac commit 0483e5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/cz/startnet/utils/pgdiff/schema/PgType.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class PgType {
* List of columns defined on the table.
*/
@SuppressWarnings("CollectionWithoutInitialCapacity")
private final List<PgColumn> columns = new ArrayList<>();
private final List<String> enumValues = new ArrayList<>();
private final List<PgColumn> columns = new ArrayList<PgColumn>();
private final List<String> enumValues = new ArrayList<String>();

/**
* Name of the table.
Expand Down Expand Up @@ -187,7 +187,7 @@ public boolean containsColumn(final String name) {
*/
private List<PgColumn> getColumnsWithStatistics() {
@SuppressWarnings("CollectionWithoutInitialCapacity")
final List<PgColumn> list = new ArrayList<>();
final List<PgColumn> list = new ArrayList<PgColumn>();

for (PgColumn column : columns) {
if (column.getStatistics() != null) {
Expand Down

0 comments on commit 0483e5b

Please sign in to comment.