Remove old comments.
This commit is contained in:
parent
5e085b72ec
commit
31dc5c700e
|
@ -32,7 +32,6 @@ import java.util.Comparator;
|
||||||
*/
|
*/
|
||||||
public final class Range<T> implements Serializable {
|
public final class Range<T> implements Serializable {
|
||||||
|
|
||||||
//-----------------------------------------------------------------------
|
|
||||||
@SuppressWarnings({"rawtypes", "unchecked"})
|
@SuppressWarnings({"rawtypes", "unchecked"})
|
||||||
private enum ComparableComparator implements Comparator {
|
private enum ComparableComparator implements Comparator {
|
||||||
INSTANCE;
|
INSTANCE;
|
||||||
|
@ -155,9 +154,6 @@ public final class Range<T> implements Serializable {
|
||||||
*/
|
*/
|
||||||
private transient String toString;
|
private transient String toString;
|
||||||
|
|
||||||
// Accessors
|
|
||||||
//--------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an instance.
|
* Creates an instance.
|
||||||
*
|
*
|
||||||
|
@ -332,9 +328,6 @@ public final class Range<T> implements Serializable {
|
||||||
return between(min, max, getComparator());
|
return between(min, max, getComparator());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Range tests
|
|
||||||
//--------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Checks whether this range is after the specified element.</p>
|
* <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;
|
return comparator.compare(element, maximum) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Basics
|
|
||||||
//--------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>Whether or not the Range is using the natural ordering of the elements.</p>
|
* <p>Whether or not the Range is using the natural ordering of the elements.</p>
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue