Skip to content

Commit

Permalink
Remove old comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Aug 20, 2020
1 parent 5e085b7 commit 31dc5c7
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/main/java/org/apache/commons/lang3/Range.java
Expand Up @@ -32,7 +32,6 @@
*/
public final class Range<T> implements Serializable {

//-----------------------------------------------------------------------
@SuppressWarnings({"rawtypes", "unchecked"})
private enum ComparableComparator implements Comparator {
INSTANCE;
Expand Down Expand Up @@ -155,9 +154,6 @@ public static <T> Range<T> is(final T element, final Comparator<T> comparator) {
*/
private transient String toString;

// Accessors
//--------------------------------------------------------------------

/**
* Creates an instance.
*
Expand Down Expand Up @@ -332,9 +328,6 @@ public Range<T> intersectionWith(final Range<T> other) {
return between(min, max, getComparator());
}

// Range tests
//--------------------------------------------------------------------

/**
* <p>Checks whether this range is after the specified element.</p>
*
Expand Down Expand Up @@ -406,9 +399,6 @@ public boolean isEndedBy(final T element) {
return comparator.compare(element, maximum) == 0;
}

// Basics
//--------------------------------------------------------------------

/**
* <p>Whether or not the Range is using the natural ordering of the elements.</p>
*
Expand Down

0 comments on commit 31dc5c7

Please sign in to comment.