RemoveFromChangeLog method

void RemoveFromChangeLog(
  1. TComplexProperty? complexProperty
)
Removes from change log. The complex property.

Implementation

void RemoveFromChangeLog(TComplexProperty? complexProperty) {
  this._removedItems.remove(complexProperty);
  this._modifiedItems.remove(complexProperty);
  this._addedItems.remove(complexProperty);
}