Changeset 6736
- Timestamp:
- Feb 13, 2015, 1:07:29 PM (9 years ago)
- Location:
- trunk/src/clients/web/net/sf/basedb/clients/web/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/plugins/ExportedProperty.java
r6687 r6736 78 78 int annotationTypeId = Values.getInt(loadInherited ? name.substring(2) : name.substring(1)); 79 79 at = AnnotationType.getById(dc, annotationTypeId); 80 if (at.getDisableInheritance() && loadInherited) return null; 80 81 name = "annotationtype_"+annotationTypeId; 81 82 if (sameUnits && at.supportUnits()) -
trunk/src/clients/web/net/sf/basedb/clients/web/plugins/SimpleExport.java
r6687 r6736 302 302 ExportedProperty ep = ExportedProperty.parse(dc, metadata, column, columnPrefix, 303 303 annotatable, formatter, sameUnits, dataloader); 304 exportedProperties.add(ep); 305 properties.add(ep.name); 304 if (ep != null) 305 { 306 exportedProperties.add(ep); 307 properties.add(ep.name); 308 } 306 309 } 307 310
Note: See TracChangeset
for help on using the changeset viewer.