Exemplo n.º 1
0
 /**
  * Calls {@link #beforeFileTreeWalk()} on all of the specified nested conditions.
  *
  * @param nestedConditions the conditions to call {@link #beforeFileTreeWalk()} on
  */
 public static void beforeFileTreeWalk(PathCondition[] nestedConditions) {
   for (PathCondition condition : nestedConditions) {
     condition.beforeFileTreeWalk();
   }
 }