(ConcurrentNavigableMapExtra<K,V> m, K lo, boolean loInclusive, K hi, boolean hiInclusive)
| 629 | protected final boolean hiInclusive; |
| 630 | |
| 631 | public SubMap(ConcurrentNavigableMapExtra<K,V> m, K lo, boolean loInclusive, K hi, boolean hiInclusive) { |
| 632 | this.m = m; |
| 633 | this.lo = lo; |
| 634 | this.loInclusive = loInclusive; |
| 635 | this.hi = hi; |
| 636 | this.hiInclusive = hiInclusive; |
| 637 | if(lo!=null && hi!=null && m.comparator().compare(lo, hi)>0){ |
| 638 | throw new IllegalArgumentException(); |
| 639 | } |
| 640 | |
| 641 | |
| 642 | } |
| 643 | |
| 644 | |
| 645 | /* ---------------- Map API methods -------------- */ |
nothing calls this directly
no test coverage detected