Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
avoid raw type
  • Loading branch information
donald committed May 8, 2015
1 parent 5fe678a commit ac13b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/de/mpg/molgen/buczek/portifix/TableModel.java
Expand Up @@ -79,7 +79,7 @@ public class TableModel extends AbstractTableModel {
+ " and AUSGABE.EXEMPLAR_ID=EXEMPLAR.EXEMPLAR_ID"
+ " order by NAME_1";

private ArrayList<Object[]> row = new ArrayList(100);
private ArrayList<Object[]> row = new ArrayList<Object[]>(100);

@Override
public int getRowCount() {
Expand Down

0 comments on commit ac13b6c

Please sign in to comment.