| commit | c46faf5fb7fd474733eb3a17e79e870e4b8bd799 | [log] [tgz] |
|---|---|---|
| author | conroy@google.com <conroy@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Thu Jan 06 14:20:30 2011 +0000 |
| committer | conroy@google.com <conroy@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Thu Jan 06 14:20:30 2011 +0000 |
| tree | e64f11c81ffd89d2784f4c41c2878a0f828e8397 | |
| parent | a75fb5f1e9045c71f669a2934bbb85b551586c56 [diff] |
For easier code archeology in the future: Step 2 of 2: Patch MethodBinding for IOOBE Original Review: http://gwt-code-reviews.appspot.com/1252801/ git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9502 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java b/dev/core/src/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java index 5fdd38d..46ef09d 100644 --- a/dev/core/src/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java +++ b/dev/core/src/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java
@@ -311,7 +311,7 @@ missingTypes = variable.superclass().collectMissingTypes(missingTypes); ReferenceBinding[] interfaces = variable.superInterfaces(); for (int j = 0, length = interfaces.length; j < length; j++) { - missingTypes = interfaces[i].collectMissingTypes(missingTypes); + missingTypes = interfaces[j].collectMissingTypes(missingTypes); } } }