summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab/classfile/ClassfileParser.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/symtab/classfile/ClassfileParser.java')
-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;
}