Skip to content

Commit

Permalink
Cleanup comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wwelling committed Apr 2, 2024
1 parent 46039a8 commit 18109ae
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ public Batch loadBatch(String metadataInputFileName, String sourceDirectoryName,
Batch batch = new Batch();
boolean errorState = false;

// check if source directory input provided and is a valid directory
boolean validSourceDir = false;

// check if source directory input provided and is a valid directory
if (sourceDirectoryName != null && sourceDirectoryName.length() > 0) {
File sourceDirFileForChecking = new File(sourceDirectoryName);
if (sourceDirFileForChecking.exists() && sourceDirFileForChecking.isDirectory()) {
Expand All @@ -144,7 +144,6 @@ public Batch loadBatch(String metadataInputFileName, String sourceDirectoryName,
String[] labelLine;
String[] nextLine;

// metadata label
labelLine = reader.readNext();

int column = 1;
Expand Down

0 comments on commit 18109ae

Please sign in to comment.