def getIntegerProperty()

in src/main/scala/com.gu.conf/Configuration.scala [125:133]


  def getIntegerProperty(propertyName: String, defaultValue: Int): Int = {
    val option = try {
      getStringProperty(propertyName) map { _.toInt }
    } catch {
      case _: NumberFormatException => None
    }

    option getOrElse defaultValue
  }