Tweak code comment.

This commit is contained in:
Gary Gregory 2019-10-28 14:04:57 -04:00
parent 66cc90ff1d
commit d29377dbfb
1 changed files with 2 additions and 2 deletions

View File

@ -84,8 +84,8 @@ public class UnmodifiableSortedMapTest<K, V> extends AbstractSortedMapTest<K, V>
public void testHeadMap() {
final SortedMap<K, V> map = makeFullMap();
final SortedMap<K, V> m = new TreeMap<>();
//again is the first key of the map
assertSame(m.isEmpty(), map.headMap((K)"again").isEmpty());
// "again" is the first key of the map
assertSame(m.isEmpty(), map.headMap((K) "again").isEmpty());
}
//-----------------------------------------------------------------------