summaryrefslogtreecommitdiff
path: root/src/library/scala/util/Properties.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-02-04 17:15:18 +0000
committerPaul Phillips <paulp@improving.org>2010-02-04 17:15:18 +0000
commit67b215e9746dcd1f1ceeb54017eb1deeffbed940 (patch)
treecc7f8ba1612ee452423b58adb0dae4d9ae354a52 /src/library/scala/util/Properties.scala
parent429da0c3c7105510a29fcacd746916431e86d3e2 (diff)
downloadscala-67b215e9746dcd1f1ceeb54017eb1deeffbed940.tar.gz
scala-67b215e9746dcd1f1ceeb54017eb1deeffbed940.tar.bz2
scala-67b215e9746dcd1f1ceeb54017eb1deeffbed940.zip
Some hardening in the repl, and removing some f...
Some hardening in the repl, and removing some functions which now exist in the standard library. No review.
Diffstat (limited to 'src/library/scala/util/Properties.scala')
-rw-r--r--src/library/scala/util/Properties.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/library/scala/util/Properties.scala b/src/library/scala/util/Properties.scala
index 450738b21d..ee3e68ed76 100644
--- a/src/library/scala/util/Properties.scala
+++ b/src/library/scala/util/Properties.scala
@@ -30,7 +30,6 @@ private[scala] trait PropertiesTrait
props
}
- protected def onull[T <: AnyRef](x: T) = if (x eq null) None else Some(x)
private def quietlyDispose(action: => Unit, disposal: => Unit) =
try { action }
finally {