private def Patches()

in src/main/scala/org/intellij/scala/bundle/Main.scala [208:218]


    private def Patches(separator: String): Descriptor = {
      case Idea.Bundle =>
        matches("bin/idea\\.properties") & edit(_ + IdeaPropertiesPatch.replaceAll("\n", separator)) |
          any
      case Idea.Resources =>
        matches("bundle.txt") & edit(const(BundleTxt.replaceAll("\n", separator))) |
          matches("data/config/options/applicationLibraries.xml") & edit(appendScalaSdkVersion) |
          matches("data/projects/hello-scala/hello-scala.iml") & edit(appendScalaSdkVersion) |
          any
      case _ => any
    }