Remove old comments.
diff --git a/src/main/java/org/apache/commons/lang3/Range.java b/src/main/java/org/apache/commons/lang3/Range.java
index a172541..2c9e4b7 100644
--- a/src/main/java/org/apache/commons/lang3/Range.java
+++ b/src/main/java/org/apache/commons/lang3/Range.java
@@ -32,7 +32,6 @@
  */
 public final class Range<T> implements Serializable {
 
-    //-----------------------------------------------------------------------
     @SuppressWarnings({"rawtypes", "unchecked"})
     private enum ComparableComparator implements Comparator {
         INSTANCE;
@@ -155,9 +154,6 @@
      */
     private transient String toString;
 
-    // Accessors
-    //--------------------------------------------------------------------
-
     /**
      * Creates an instance.
      *
@@ -332,9 +328,6 @@
         return between(min, max, getComparator());
     }
 
-    // Range tests
-    //--------------------------------------------------------------------
-
     /**
      * <p>Checks whether this range is after the specified element.</p>
      *
@@ -406,9 +399,6 @@
         return comparator.compare(element, maximum) == 0;
     }
 
-    // Basics
-    //--------------------------------------------------------------------
-
     /**
      * <p>Whether or not the Range is using the natural ordering of the elements.</p>
      *