Archiviert
13
0

Fix documentation.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2012-12-04 00:21:14 +01:00
Ursprung b9abf0b683
Commit 7062b9327c

Datei anzeigen

@ -132,7 +132,7 @@ public abstract class AbstractIntervalTree<TKey extends Comparable<TKey>, TValue
* Removes every interval that intersects with the given range. * Removes every interval that intersects with the given range.
* @param lowerBound - lowest value to remove. * @param lowerBound - lowest value to remove.
* @param upperBound - highest value to remove. * @param upperBound - highest value to remove.
* @param preserveOutside - whether or not to preserve the intervals that are partially outside. * @param preserveDifference - whether or not to preserve the intervals that are partially outside.
*/ */
public Set<Entry> remove(TKey lowerBound, TKey upperBound, boolean preserveDifference) { public Set<Entry> remove(TKey lowerBound, TKey upperBound, boolean preserveDifference) {
checkBounds(lowerBound, upperBound); checkBounds(lowerBound, upperBound);