summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2007-01-31 09:16:08 +0000
committerIulian Dragos <jaguarul@gmail.com>2007-01-31 09:16:08 +0000
commit0ecbad689c05df4f25035c5b3666ef2864f218a2 (patch)
tree959f50bebdd44157751af66beb865f10c91af91b /src/library
parentbf075cd7bd24a06d9a3947693d1356ca47da335f (diff)
downloadscala-0ecbad689c05df4f25035c5b3666ef2864f218a2.tar.gz
scala-0ecbad689c05df4f25035c5b3666ef2864f218a2.tar.bz2
scala-0ecbad689c05df4f25035c5b3666ef2864f218a2.zip
Uncommented printf
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/Console.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/Console.scala b/src/library/scala/Console.scala
index bcff65c84c..7cc8e9d4e9 100644
--- a/src/library/scala/Console.scala
+++ b/src/library/scala/Console.scala
@@ -171,12 +171,12 @@ object Console {
* @param args the parameters used to instantiate the format.
*/
// todo: Uncurry
-/* def printf(text: String)(args: Any*): Unit =
+ def printf(text: String)(args: Any*): Unit =
out.print(
if (text eq null) "null"
else MessageFormat.format(text, textParams(args))
)
-*/
+
/** Read a full line from the terminal.
*
* @return the string read from the terminal.