public static Properties loadFromStream()

in src/main/java/org/apache/fluo/yarn/FluoYarnProperties.java [63:72]


  public static Properties loadFromStream(FileInputStream fis) {
    Properties props = new Properties();
    try {
      props.load(fis);
      fis.close();
    } catch (IOException e) {
      throw new IllegalStateException(e);
    }
    return props;
  }