def getPropertySource()

in src/main/scala/com.gu.conf/impl/ProjectedConfiguration.scala [26:31]


  def getPropertySource(propertyName: String): Option[AbstractConfiguration] = {
    (propertyNames contains propertyName) match {
      case true => delegate.getPropertySource(propertyName)
      case false => None
    }
  }