Show
Ignore:
Timestamp:
10/28/08 10:33:25 (3 years ago)
Author:
koezleal
Message:

1.0.9 version

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk-eclipse/art-core/src/java/de/verit/art/core/model/RequirementComponent.java

    r1226 r1231  
    133133                                for (Attribute attribute : (EList<Attribute>) entity 
    134134                                                .getAttribute()) { 
    135                                         if (attribute.getObjectreference() != null) { 
     135                                        if (attribute.getObjectreference() != null && attribute.getObjectreference().getRef() != null) { 
    136136                                                String id = attribute.getObjectreference().getRef() 
    137137                                                                .getId(); 
    138                                                 referenceNames.add(id); 
     138                                                if (id != null) { 
     139                                                        referenceNames.add(id); 
     140                                                } 
    139141                                        } 
    140142                                }