# File lib/compass/deprecation.rb, line 8
    def self.deprecated!(identifier, message)
      return if Deprecation.issued_deprecations[identifier]
      Deprecation.issued_deprecations[identifier] = true
      warn message
      warn "Called from #{caller[1]}"
    end