Changeset 240

Show
Ignore:
Timestamp:
01/02/08 20:10:24 (1 year ago)
Author:
chris
Message:

Handle null sheafs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lex/trunk/src/com/qwirx/lex/Search.java

    r236 r240  
    66import java.util.Iterator; 
    77import java.util.List; 
    8 import java.util.Set; 
    98 
    109import jemdros.FlatSheaf; 
     
    6160    private void addToMonadSet(Sheaf sheaf, SetOfMonads set) 
    6261    { 
     62        if (sheaf == null) 
     63        { 
     64            return; 
     65        } 
     66         
    6367        SheafConstIterator shci = sheaf.const_iterator(); 
    6468