/**
  * Answers whether the resource at the given path or any of its children has a transform
  * associated with it.
  *
  * @param path
  * @return whether the resource at the given path or any of its children has a transform
  *     associated with it.
  */
 private boolean hasTransforms(String path) {
   if (!transformers.hasTransformers()) {
     return false;
   }
   return templates.hasTransformsFor(data.getBundle());
 }