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

Commit

Permalink
warning message if no files found in source directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Habib committed Aug 17, 2015
1 parent 83afa4d commit 100edc9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/org/salesforce/apexdoc/FileManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,8 @@ public ArrayList<File> getFiles(String path) {
listOfFilesToCopy.add(listOfFiles[i]);
}
}
} else {
System.out.println("WARNING: No files found in directory: " + path);
}
}
return listOfFilesToCopy;
Expand Down

0 comments on commit 100edc9

Please sign in to comment.