summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-11-05 08:53:03 +0000
committerpaltherr <paltherr@epfl.ch>2003-11-05 08:53:03 +0000
commit64c34f20091602536e3e4f0bd4fe00bfc2c08dde (patch)
tree42645c58bd8d3a7ade42f42d65a1063aa52eea62 /sources
parent7347b4ef104f4b764ad7e5c149900c53012a4f87 (diff)
downloadscala-64c34f20091602536e3e4f0bd4fe00bfc2c08dde.tar.gz
scala-64c34f20091602536e3e4f0bd4fe00bfc2c08dde.tar.bz2
scala-64c34f20091602536e3e4f0bd4fe00bfc2c08dde.zip
- Fixed typo (replaced "i" by "j")
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/symtab/Type.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/scalac/symtab/Type.java b/sources/scalac/symtab/Type.java
index fe99837158..2bde3ac1d6 100644
--- a/sources/scalac/symtab/Type.java
+++ b/sources/scalac/symtab/Type.java
@@ -2623,9 +2623,9 @@ public class Type implements Modifiers, Kinds, TypeTags, EntryTags {
if (vparams.length != vparams0.length)
return Type.NoType;
for (int j = 0; j < vparams.length; j++)
- if (!vparams[i].type().isSameAs(vparams0[i].type()) ||
- (vparams[i].flags & (DEF | REPEATED)) !=
- (vparams0[i].flags & (DEF | REPEATED)))
+ if (!vparams[j].type().isSameAs(vparams0[j].type()) ||
+ (vparams[j].flags & (DEF | REPEATED)) !=
+ (vparams0[j].flags & (DEF | REPEATED)))
return Type.NoType;
restps[i] = restp;
}