View | Details | Raw Unified | Return to bug 320802 | Differences between
and this patch

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/problem/ProblemReporter.java 20 Jul 2010 02:25:58 -0000 1.415 (-1 / +6 lines)
Lines 3668-3674 Link Here
3668
       List missingTypes = type.collectMissingTypes(null);
3668
       List missingTypes = type.collectMissingTypes(null);
3669
       if (missingTypes != null) {
3669
       if (missingTypes != null) {
3670
           for (Iterator iterator = missingTypes.iterator(); iterator.hasNext(); ) {
3670
           for (Iterator iterator = missingTypes.iterator(); iterator.hasNext(); ) {
3671
               invalidType(location, (TypeBinding) iterator.next());
3671
               ReferenceContext savedContext = this.referenceContext;
3672
               try {
3673
                   invalidType(location, (TypeBinding) iterator.next());
3674
               } finally {
3675
                   this.referenceContext = savedContext;
3676
               }
3672
           }
3677
           }
3673
           return;
3678
           return;
3674
       }
3679
       }

Return to bug 320802