summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Properties.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-02-05 10:27:38 +0000
committermichelou <michelou@epfl.ch>2008-02-05 10:27:38 +0000
commit2388b54ba3762e019b35affb81aea67ed92762dd (patch)
tree835c27ab822be77ff503fe4754d905d8bf094703 /src/compiler/scala/tools/nsc/Properties.scala
parent87609b42414616a3ec1f0f2f2007f3061fa7f886 (diff)
downloadscala-2388b54ba3762e019b35affb81aea67ed92762dd.tar.gz
scala-2388b54ba3762e019b35affb81aea67ed92762dd.tar.bz2
scala-2388b54ba3762e019b35affb81aea67ed92762dd.zip
updated default encoding to UTF8
Diffstat (limited to 'src/compiler/scala/tools/nsc/Properties.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Properties.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/Properties.scala b/src/compiler/scala/tools/nsc/Properties.scala
index d6fdca15bb..cc7f588789 100644
--- a/src/compiler/scala/tools/nsc/Properties.scala
+++ b/src/compiler/scala/tools/nsc/Properties.scala
@@ -1,5 +1,5 @@
/* NSC -- new Scala compiler
- * Copyright 2006-2007 LAMP/EPFL
+ * Copyright 2006-2008 LAMP/EPFL
* @author Stephane Micheloud
*/
@@ -35,12 +35,12 @@ object Properties {
}
val copyrightString: String = {
- val defaultString = "(c) 2002-2007 LAMP/EPFL"
+ val defaultString = "(c) 2002-2008 LAMP/EPFL"
props.getProperty("copyright.string", defaultString)
}
val encodingString: String = {
- val defaultString = "ISO-8859-1"
+ val defaultString = "UTF8" //"ISO-8859-1"
props.getProperty("file.encoding", defaultString)
}