summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-12-02 14:17:33 +0000
committerpaltherr <paltherr@epfl.ch>2004-12-02 14:17:33 +0000
commit0c75fe7c176229e10622a3ede6c03e07ef04000d (patch)
tree0c05ff3621f48d18026f480187cbd4fd3eb53876
parentd6f4a87a8513e8e3a5884e02d2e020eb18c761f7 (diff)
downloadscala-0c75fe7c176229e10622a3ede6c03e07ef04000d.tar.gz
scala-0c75fe7c176229e10622a3ede6c03e07ef04000d.tar.bz2
scala-0c75fe7c176229e10622a3ede6c03e07ef04000d.zip
- Removed generation of scala attribute in clas...
- Removed generation of scala attribute in class files
-rw-r--r--sources/scalac/backend/jvm/GenJVM.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/sources/scalac/backend/jvm/GenJVM.java b/sources/scalac/backend/jvm/GenJVM.java
index 16890dce87..ac8728e2d0 100644
--- a/sources/scalac/backend/jvm/GenJVM.java
+++ b/sources/scalac/backend/jvm/GenJVM.java
@@ -1377,13 +1377,13 @@ class GenJVM {
protected void addScalaAttr(JClass cls, Pickle pickle) {
pickles.add(cls);
pickles.add(pickle);
- JOtherAttribute scalaAttr =
- fjbgContext.JOtherAttribute(cls,
- cls,
- SCALA_ATTR,
- pickle.bytes,
- pickle.size());
- cls.addAttribute(scalaAttr);
+// JOtherAttribute scalaAttr =
+// fjbgContext.JOtherAttribute(cls,
+// cls,
+// SCALA_ATTR,
+// pickle.bytes,
+// pickle.size());
+// cls.addAttribute(scalaAttr);
}
/// Names