if ( make == null && includeModel ) {
//
// If there was no TIFF Make field, and the model was requested,
// try the DNG-specific UniqueCameraModel field.
//
final ImageMetaValue value = getValue( DNG_UNIQUE_CAMERA_MODEL );
if ( value != null )
return value.getStringValue().toUpperCase().trim();
}
return make;
}