Revision: 9502
Author: con...@google.com
Date: Thu Jan  6 06:20:30 2011
Log: For easier code archeology in the future:

Step 2 of 2: Patch MethodBinding for IOOBE
Original Review: http://gwt-code-reviews.appspot.com/1252801/

http://code.google.com/p/google-web-toolkit/source/detail?r=9502

Modified:
/trunk/dev/core/src/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java

=======================================
--- /trunk/dev/core/src/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java Thu Jan 6 05:49:54 2011 +++ /trunk/dev/core/src/org/eclipse/jdt/internal/compiler/lookup/MethodBinding.java Thu Jan 6 06:20:30 2011
@@ -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);
       }
     }
   }

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to