in src/main/scala/org/intellij/scala/bundle/MacHost.scala [51:56]
private def propertiesIn(file: File): Properties =
new Properties().tap { properties =>
val input = new BufferedInputStream(new FileInputStream(file))
properties.load(input)
input.close()
}