summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-04-28 20:26:12 +0000
committerPaul Phillips <paulp@improving.org>2009-04-28 20:26:12 +0000
commit6875e2fde566b0ced981fb092480827778483f1e (patch)
tree9ac80c6d478bcf06984eef08b8d3526ecf1331e1 /src/library
parent912da5d2ea6993d7393f340b411fba12fe545894 (diff)
downloadscala-6875e2fde566b0ced981fb092480827778483f1e.tar.gz
scala-6875e2fde566b0ced981fb092480827778483f1e.tar.bz2
scala-6875e2fde566b0ced981fb092480827778483f1e.zip
Updated scaladoc to show now using jvm box cache.
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/runtime/BoxesRunTime.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/runtime/BoxesRunTime.java b/src/library/scala/runtime/BoxesRunTime.java
index 966fbe8cd1..bd4ed42cd9 100644
--- a/src/library/scala/runtime/BoxesRunTime.java
+++ b/src/library/scala/runtime/BoxesRunTime.java
@@ -14,8 +14,8 @@ package scala.runtime;
/** An object (static class) that defines methods used for creating,
* reverting, and calculating with, boxed values. There are four classes
* of methods in this object:
- * - High-performance value boxing methods that feed from a pre-
- * computed map of instances for the most common instanciations.
+ * - Convenience boxing methods which call the static valueOf method
+ * on the boxed class, thus utilizing the JVM boxing cache.
* - Convenience unboxing methods returning default value on null.
* - The generalised comparison method to be used when an object may
* be a boxed value.