public static Properties loadFromFile()

in src/main/java/org/apache/fluo/yarn/FluoYarnProperties.java [55:61]


  public static Properties loadFromFile(String propsFilePath) {
    try {
      return loadFromStream(new FileInputStream(propsFilePath));
    } catch (IOException e) {
      throw new IllegalStateException(e);
    }
  }