Skip to content

Commit

Permalink
fix bug. avoid null point exception, when read file.
Browse files Browse the repository at this point in the history
fix bug. avoid null point exception, when read file.
  • Loading branch information
ihk6262 committed Jan 2, 2020
1 parent f5b0036 commit 2dc8654
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -16,6 +16,7 @@ public class ColumnFilterParameter {
private int[] filteredColumns;

public ColumnFilterParameter() {
filteredColumns = new int[0];
}

public ColumnFilterParameter(int start, int end, int[] selectedColumns) {
Expand Down

0 comments on commit 2dc8654

Please sign in to comment.