From de1d294f5e2349fe9bcbc6a44990c8f641f71d37 Mon Sep 17 00:00:00 2001 From: Shane Delmore Date: Mon, 7 Dec 2015 22:02:23 -0800 Subject: SI-9583: Update SystemProperties.empty to return a mutable.Map to fix builders --- src/library/scala/sys/SystemProperties.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 { -- cgit v1.2.3