def propertiesIn()

in src/main/scala/org/intellij/scala/bundle/package.scala [40:49]


  def propertiesIn(file: File): Properties = {
    val properties = new Properties()
    val input = new BufferedInputStream(new FileInputStream(file))
    try {
      properties.load(input)
      properties
    } finally {
      input.close()
    }
  }