Changeset 2174

Show
Ignore:
Timestamp:
07/03/08 12:32:51 (3 months ago)
Author:
nbeckman
Message:

[bugfix] Ticket 145, this should fix it. Disambiguator now stops if types don't disambiguate.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ProjectFortress/src/com/sun/fortress/compiler/Disambiguator.java

    r2163 r2174  
    150150        } 
    151151         
     152        // Go no further if we couldn't disambiguate the types. 
     153        if( errors.size() > 0 ) { 
     154                return new ApiResult(new_apis, errors); 
     155        } 
     156         
    152157        // then, rebuild the indices 
    153158        IndexBuilder.ApiResult rebuilt_indx = IndexBuilder.buildApis(new_apis, System.currentTimeMillis());