private static void verifyPath()

in src/main/java/org/apache/fluo/yarn/FluoYarnEnv.java [74:78]


  private static void verifyPath(String path) {
    File f = new File(path);
    Preconditions.checkState(f.exists());
    Preconditions.checkState(f.canRead());
  }