summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-12-13 11:32:04 +0000
committermihaylov <mihaylov@epfl.ch>2005-12-13 11:32:04 +0000
commit6ff6a40689b503f0e285dcd41ee8429c22cc3e21 (patch)
tree917a702dc1d918cb565318c47569947da66cb520 /sources
parent41c615a461ca7d6cdbd226334fb3958e9d139b2c (diff)
downloadscala-6ff6a40689b503f0e285dcd41ee8429c22cc3e21.tar.gz
scala-6ff6a40689b503f0e285dcd41ee8429c22cc3e21.tar.bz2
scala-6ff6a40689b503f0e285dcd41ee8429c22cc3e21.zip
use Definitions.SerializableAttr
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/tools/nsc/backend/jvm/GenJVM.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/tools/nsc/backend/jvm/GenJVM.scala b/sources/scala/tools/nsc/backend/jvm/GenJVM.scala
index fe37da3e59..aa6e46d263 100644
--- a/sources/scala/tools/nsc/backend/jvm/GenJVM.scala
+++ b/sources/scala/tools/nsc/backend/jvm/GenJVM.scala
@@ -55,7 +55,7 @@ abstract class GenJVM extends SubComponent {
val toStringType = new JMethodType(JObjectType.JAVA_LANG_STRING, JType.EMPTY_ARRAY);
// Scala attributes
- val SerializableAttr = definitions.getClass("scala.serializable").tpe;
+ val SerializableAttr = definitions.SerializableAttr;
val SerialVersionUID = definitions.getClass("scala.SerialVersionUID").tpe;
val CloneableAttr = definitions.getClass("scala.cloneable").tpe;
val TransientAtt = definitions.getClass("scala.transient").tpe;