Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit 100edc9

Browse files
author
David Habib
committed
warning message if no files found in source directory.
1 parent 83afa4d commit 100edc9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/org/salesforce/apexdoc/FileManager.java

+2
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,8 @@ public ArrayList<File> getFiles(String path) {
417417
listOfFilesToCopy.add(listOfFiles[i]);
418418
}
419419
}
420+
} else {
421+
System.out.println("WARNING: No files found in directory: " + path);
420422
}
421423
}
422424
return listOfFilesToCopy;

0 commit comments

Comments
 (0)