in project/CopyrightHeader.scala [100:110]
override def apply(text: String, existingText: Option[String]): String = {
val formatted = existingText match {
case Some(currentText) if isApacheCopyrighted(currentText) =>
currentText
case Some(currentText) =>
HeaderCommentStyle.hashLineComment.commentCreator(apacheSpdxHeader, existingText) + NewLine * 2 + currentText
case None =>
HeaderCommentStyle.hashLineComment.commentCreator(apacheSpdxHeader, existingText)
}
formatted.trim
}