Skip to content

Commit

Permalink
🐦 Version 1.2.2 release. Rearrange files, fix issue with load data bu…
Browse files Browse the repository at this point in the history
…tton
  • Loading branch information
Ch3shireDev committed Aug 16, 2023
1 parent e37e711 commit 7b64540
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public AccessNewDbBirdRecordDataLoader(String filename, String tableName) {
public List<NewDbBirdRecord> loadData() {
var records = new LinkedList<NewDbBirdRecord>();

Table table = null;
Table table;
try {
table = DatabaseBuilder.open(new File(filename)).getTable(tableName);
} catch (IOException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public Boolean isValid(String tableName) {
public List<OldDbBirdRecord> loadData() {
var records = new LinkedList<OldDbBirdRecord>();

Table table = null;
Table table;
try {
table = DatabaseBuilder.open(new File(filename)).getTable(tableName);
} catch (IOException e) {
Expand Down

0 comments on commit 7b64540

Please sign in to comment.