Remove old comments.

This commit is contained in:
Gary Gregory 2020-08-20 13:50:23 -04:00
parent 5e085b72ec
commit 31dc5c700e
1 changed files with 0 additions and 10 deletions

View File

@ -32,7 +32,6 @@ import java.util.Comparator;
*/
public final class Range<T> implements Serializable {
//-----------------------------------------------------------------------
@SuppressWarnings({"rawtypes", "unchecked"})
private enum ComparableComparator implements Comparator {
INSTANCE;
@ -155,9 +154,6 @@ public final class Range<T> implements Serializable {
*/
private transient String toString;
// Accessors
//--------------------------------------------------------------------
/**
* Creates an instance.
*
@ -332,9 +328,6 @@ public final class Range<T> implements Serializable {
return between(min, max, getComparator());
}
// Range tests
//--------------------------------------------------------------------
/**
* <p>Checks whether this range is after the specified element.</p>
*
@ -406,9 +399,6 @@ public final class Range<T> implements Serializable {
return comparator.compare(element, maximum) == 0;
}
// Basics
//--------------------------------------------------------------------
/**
* <p>Whether or not the Range is using the natural ordering of the elements.</p>
*