summaryrefslogtreecommitdiff
path: root/sources/scalac/typechecker/Context.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/typechecker/Context.java')
-rw-r--r--sources/scalac/typechecker/Context.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/sources/scalac/typechecker/Context.java b/sources/scalac/typechecker/Context.java
index 5c01e9d73e..090f0e58fb 100644
--- a/sources/scalac/typechecker/Context.java
+++ b/sources/scalac/typechecker/Context.java
@@ -20,7 +20,6 @@ public class Context {
Context enclClass = this; // The next outer context whose tree
// is a class template
int variance; // Variance relative to eclosing class.
- boolean delayArgs = false; // delay checking of type arguments
public Context() {}
@@ -37,7 +36,6 @@ public class Context {
tree instanceof Tree.CompoundType) this.enclClass = this;
else this.enclClass = outer.enclClass;
this.variance = outer.variance;
- this.delayArgs = outer.delayArgs;
this.outer = outer;
}