예제 #1
0
 /**
  * Load job schedules from the given directories
  *
  * @param dirs The directories to check for properties
  * @param suffixes The suffixes to load
  * @return The properties
  */
 public static Props loadPropsInDirs(List<File> dirs, String... suffixes) {
   Props props = new Props();
   for (File dir : dirs) {
     props.putLocal(loadPropsInDir(dir, suffixes));
   }
   return props;
 }