Exemple #1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public void close() throws java.io.IOException
        public override void Close()
        {
            foreach (IndexAccessor accessor in _accessors)
            {
                accessor.Dispose();
            }
            _accessors.clear();
            _onlineIndexRules.Clear();
            _notOnlineIndexRules.Clear();
        }
Exemple #2
0
 internal virtual void Clear()
 {
     if (_changedProperties != null)
     {
         _changedProperties.clear();
     }
     if (_addedProperties != null)
     {
         _addedProperties.clear();
     }
     if (_removedProperties != null)
     {
         _removedProperties.clear();
     }
 }