Mercurial > cgi-bin > hgweb.cgi > ImagePrep
diff src/name/blackcap/imageprep/Settings.kt @ 2:a6f9b51d5e8d
Got jar building.
author | David Barts <n5jrn@me.com> |
---|---|
date | Fri, 17 Jul 2020 10:34:48 -0700 |
parents | 0bded24f746e |
children | 5234e4500d45 |
line wrap: on
line diff
--- a/src/name/blackcap/imageprep/Settings.kt Thu Jul 16 21:51:08 2020 -0700 +++ b/src/name/blackcap/imageprep/Settings.kt Fri Jul 17 10:34:48 2020 -0700 @@ -9,14 +9,14 @@ private val _PROPS = PROPERTIES object Settings { - private var homeDir = System.getProperty("user.home") + private val homeDir = System.getProperty("user.home") val maxDimension = _PROPS.getProperty("maxDimension").toInt() val outputQuality = _PROPS.getProperty("outputQuality").toInt() - val outputSuffix = tilde(_PROPS.getProperty("outputSuffix")) + val outputSuffix = _PROPS.getProperty("outputSuffix") val outputTo = tilde(_PROPS.getProperty("outputTo")) val outputToInputDir = strToBool(_PROPS.getProperty("outputToInputDir")) - private fun tilde(s: String): String { + private fun tilde(s: String?): String { if (s.isNullOrEmpty()) return homeDir if (s.startsWith("~/") || s.startsWith("~\\"))