From: Felipe G. S. <fel...@in...> - 2011-05-02 12:37:51
|
Hi, I was seeing this class IndexedTripleCollection and this method: private void UnIndex(Triple t) { this._subjIndex.Remove(t.Subject, t); this._predIndex.Remove(t.Predicate, t); this._objIndex.Add(t.Object, t); The last line is correct? Thanks |