All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightbend.lagom.internal.util.PropertiesLoader.scala Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
/*
 * Copyright (C) 2016 Lightbend Inc. 
 */
package com.lightbend.lagom.internal.util

import java.util.Properties

object PropertiesLoader {
  def from(file: String): Properties = {
    val properties = new Properties()
    properties.load(getClass.getResourceAsStream(file))
    properties
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy