summaryrefslogtreecommitdiff
path: root/src/library/scala/sys
diff options
context:
space:
mode:
authorShane Delmore <shane@delmore.io>2015-12-07 22:02:23 -0800
committerShane Delmore <shane@delmore.io>2015-12-10 12:57:19 -0800
commitde1d294f5e2349fe9bcbc6a44990c8f641f71d37 (patch)
tree335ed852218fe487dc61626dbb0a357cf1c722a7 /src/library/scala/sys
parentd5c74a245d95822c353bff514cb92e144a607967 (diff)
downloadscala-de1d294f5e2349fe9bcbc6a44990c8f641f71d37.tar.gz
scala-de1d294f5e2349fe9bcbc6a44990c8f641f71d37.tar.bz2
scala-de1d294f5e2349fe9bcbc6a44990c8f641f71d37.zip
SI-9583: Update SystemProperties.empty to return a mutable.Map to fix builders
Diffstat (limited to 'src/library/scala/sys')
-rw-r--r--src/library/scala/sys/SystemProperties.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/sys/SystemProperties.scala b/src/library/scala/sys/SystemProperties.scala
index 4d1d8f740f..ebe94651f9 100644
--- a/src/library/scala/sys/SystemProperties.scala
+++ b/src/library/scala/sys/SystemProperties.scala
@@ -32,7 +32,7 @@ class SystemProperties
extends mutable.AbstractMap[String, String]
with mutable.Map[String, String] {
- override def empty = new SystemProperties
+ override def empty = mutable.Map[String, String]()
override def default(key: String): String = null
def iterator: Iterator[(String, String)] = wrapAccess {