summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-08-18 21:27:31 +0000
committerpaltherr <paltherr@epfl.ch>2003-08-18 21:27:31 +0000
commit4cdff61887a0339150e1dd8cb571be0c7a9a89f1 (patch)
treebfe97d2f88b8062a0710424fc4decfe80eb5b013 /sources
parent73e8019358bd7bf8c1c281e83eaf5be3681fc817 (diff)
downloadscala-4cdff61887a0339150e1dd8cb571be0c7a9a89f1.tar.gz
scala-4cdff61887a0339150e1dd8cb571be0c7a9a89f1.tar.bz2
scala-4cdff61887a0339150e1dd8cb571be0c7a9a89f1.zip
- Removed unused field phaseId
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/symtab/classfile/ClassfileParser.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/sources/scalac/symtab/classfile/ClassfileParser.java b/sources/scalac/symtab/classfile/ClassfileParser.java
index 1fbd14174c..48295cec46 100644
--- a/sources/scalac/symtab/classfile/ClassfileParser.java
+++ b/sources/scalac/symtab/classfile/ClassfileParser.java
@@ -46,7 +46,6 @@ public class ClassfileParser implements ClassfileConstants {
protected ConstantPool pool;
protected AttributeParser attrib;
protected Definitions defs;
- protected int phaseId;
public ClassfileParser(Global global, AbstractFileReader in, Symbol c) {
@@ -59,7 +58,6 @@ public class ClassfileParser implements ClassfileConstants {
this.pool = new ConstantPool(in, sigs);
this.attrib = new AttributeParser(in, pool, this);
this.defs = global.definitions;
- this.phaseId = global.POST_ANALYZER_PHASE_ID;
}