Skip to content

Commit d27c421

Browse files
authored
Fix ISpatialDatabase interface (#48)
1 parent 3f6c1e0 commit d27c421

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

RBush/ISpatialDatabase.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ public interface ISpatialDatabase<T> : ISpatialIndex<T>
2121
/// <param name="item">
2222
/// The object to be removed from the <see cref="ISpatialDatabase{T}"/>.
2323
/// </param>
24-
void Delete(T item);
24+
/// <returns><see langword="bool" /> indicating whether the item was removed.</returns>
25+
bool Delete(T item);
2526

2627
/// <summary>
2728
/// Removes all elements from the <see cref="ISpatialDatabase{T}"/>.

0 commit comments

Comments
 (0)