Changeset 2576

Show
Ignore:
Timestamp:
11/07/08 16:20:44 (2 months ago)
Author:
rduhon
Message:

Add attempted workaround to the null issue (have a dummy AD)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/plugins/shared/edu.iu.nwb.templates.staticexecutable.nwb/src/edu/iu/nwb/templates/staticexecutable/nwb/HelperFactory.java

    r2564 r2576  
    106106                 
    107107                for(int ii = 0; ii < definitions.length; ii++) { 
    108                         definition.addAttributeDefinition(ObjectClassDefinition.REQUIRED, definitions[ii]); 
     108                        if(!"DROPALWAYS".equals(definitions[ii].getName())) { 
     109                                definition.addAttributeDefinition(ObjectClassDefinition.REQUIRED, definitions[ii]); 
     110                        } 
    109111                } 
    110112