Fix implicit numeric widening warning

This commit is contained in:
Ethan Atkins 2019-08-08 10:06:16 -07:00
parent 68a966178a
commit 14f7177619
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ object SysProp {
def closeClassLoaders: Boolean = getOrTrue("sbt.classloader.close")
def fileCacheSize: Long =
SizeParser(System.getProperty("sbt.file.cache.size", "128M")).getOrElse(128 * 1024 * 1024)
SizeParser(System.getProperty("sbt.file.cache.size", "128M")).getOrElse(128L * 1024 * 1024)
def supershell: Boolean = color && getOrTrue("sbt.supershell")
def supershellSleep: Long = long("sbt.supershell.sleep", 100L)