Skip to content

Commit 137911a

Browse files
committed
Disable zipfs based classpath by default
1 parent 85bd0f6 commit 137911a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/scala/tools/nsc/settings/ScalaSettings.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ trait ScalaSettings extends StandardScalaSettings with Warnings { _: MutableSett
242242
val YdisableFlatCpCaching = BooleanSetting ("-Ydisable-flat-cp-caching", "Do not cache flat classpath representation of classpath elements from jars across compiler instances.").withAbbreviation("-YdisableFlatCpCaching")
243243
// Zinc adds YdisableFlatCpCaching automatically for straight-to-JAR compilation, this is a way to override that choice.
244244
val YforceFlatCpCaching = BooleanSetting ("-Yforce-flat-cp-caching", "Force caching flat classpath representation of classpath elements from jars across compiler instances. Has precedence over: " + YdisableFlatCpCaching.name).internalOnly()
245-
val YzipfsClassPath = BooleanSetting ("-Yzipfs-class-path", "Use ZipFileSystemProvider, if available, to read classpath JARs to avoid lock contention", true)
245+
val YzipfsClassPath = BooleanSetting ("-Yzipfs-class-path", "Use ZipFileSystemProvider, if available, to read classpath JARs to avoid lock contention")
246246
val YcachePluginClassLoader = CachePolicy.setting("plugin", "compiler plugins")
247247
val YcacheMacroClassLoader = CachePolicy.setting("macro", "macros")
248248
val YpartialUnification = BooleanSetting ("-Ypartial-unification", "Enable partial unification in type constructor inference")

0 commit comments

Comments
 (0)