summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-03-21 14:43:55 +0000
committermichelou <michelou@epfl.ch>2006-03-21 14:43:55 +0000
commit1f57a0e06e88977c391a0944dae454ebc81aefb7 (patch)
tree943d3ecfe52b9aa20f8c0921923c4dcda101e97b /src/library
parente7bdebbdf69c62404e93a3e69c6d4eba7f7fc62f (diff)
downloadscala-1f57a0e06e88977c391a0944dae454ebc81aefb7.tar.gz
scala-1f57a0e06e88977c391a0944dae454ebc81aefb7.tar.bz2
scala-1f57a0e06e88977c391a0944dae454ebc81aefb7.zip
added header and author in file scala/util/Flui...
added header and author in file scala/util/Fluid.scala
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/util/Fluid.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/library/scala/util/Fluid.scala b/src/library/scala/util/Fluid.scala
index 09ea91cc80..2cabde350b 100644
--- a/src/library/scala/util/Fluid.scala
+++ b/src/library/scala/util/Fluid.scala
@@ -1,3 +1,13 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2006, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id: $
+
package scala.util
@@ -28,6 +38,9 @@ package scala.util
* the stack of bindings from the parent thread, and
* from then on the bindings for the new thread
* are independent of those for the original thread.
+ *
+ * @author Lex Spoon
+ * @version 1.0, 21/03/2006
*/
class Fluid[T](init: T) {
private val tl = new InheritableThreadLocal