added back in scan methods that were removed by mistake

Former-commit-id: c4a26c76c2668a2b635f361a55d3c840a842f6f7
This commit is contained in:
Jeremy Long
2014-03-28 05:28:17 -04:00
parent 139bf0ee35
commit 2ccae9f434

View File

@@ -183,32 +183,34 @@ public class Engine {
} }
} }
// /** /**
// * Scans an array of files or directories. If a directory is specified, it will be scanned recursively. Any * Scans an array of files or directories. If a directory is specified, it will be scanned recursively. Any
// * dependencies identified are added to the dependency collection. * dependencies identified are added to the dependency collection.
// * *
// * @since v0.3.2.5 * @since v0.3.2.5
// * *
// * @param files an array of paths to files or directories to be analyzed. * @param files an array of paths to files or directories to be analyzed.
// */ */
// public void scan(File[] files) { public void scan(File[] files) {
// for (File file : files) { for (File file : files) {
// scan(file); scan(file);
// } }
// } }
// /**
// * Scans a list of files or directories. If a directory is specified, it will be scanned recursively. Any /**
// * dependencies identified are added to the dependency collection. * Scans a list of files or directories. If a directory is specified, it will be scanned recursively. Any
// * * dependencies identified are added to the dependency collection.
// * @since v0.3.2.5 *
// * * @since v0.3.2.5
// * @param files a set of paths to files or directories to be analyzed. *
// */ * @param files a set of paths to files or directories to be analyzed.
// public void scan(Set<File> files) { */
// for (File file : files) { public void scan(Set<File> files) {
// scan(file); for (File file : files) {
// } scan(file);
// } }
}
/** /**
* Scans a list of files or directories. If a directory is specified, it will be scanned recursively. Any * Scans a list of files or directories. If a directory is specified, it will be scanned recursively. Any
* dependencies identified are added to the dependency collection. * dependencies identified are added to the dependency collection.