def deleteFileIfExists()

in app/com/gu/contentapi/sanity/support/XmlFileSupport.scala [17:21]


  def deleteFileIfExists(filePath: String): Unit = {
    val tempFile = new File(filePath)
    if (tempFile.exists) tempFile.delete()
    ()
  }