Fix Checkstyle: Max line length is 120.
This commit is contained in:
parent
a528bcb1eb
commit
c4190304ba
|
@ -104,7 +104,8 @@ public abstract class AbstractNavigableSetDecorator<E>
|
|||
}
|
||||
|
||||
@Override
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement, final boolean toInclusive) {
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement,
|
||||
final boolean toInclusive) {
|
||||
return decorated().subSet(fromElement, fromInclusive, toElement, toInclusive);
|
||||
}
|
||||
|
||||
|
|
|
@ -132,7 +132,8 @@ public class PredicatedNavigableSet<E> extends PredicatedSortedSet<E> implements
|
|||
}
|
||||
|
||||
@Override
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement, final boolean toInclusive) {
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement,
|
||||
final boolean toInclusive) {
|
||||
final NavigableSet<E> sub = decorated().subSet(fromElement, fromInclusive, toElement, toInclusive);
|
||||
return predicatedNavigableSet(sub, predicate);
|
||||
}
|
||||
|
|
|
@ -153,7 +153,8 @@ public class TransformedNavigableSet<E> extends TransformedSortedSet<E> implemen
|
|||
}
|
||||
|
||||
@Override
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement, final boolean toInclusive) {
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement,
|
||||
final boolean toInclusive) {
|
||||
final NavigableSet<E> sub = decorated().subSet(fromElement, fromInclusive, toElement, toInclusive);
|
||||
return transformingNavigableSet(sub, transformer);
|
||||
}
|
||||
|
|
|
@ -137,7 +137,8 @@ public final class UnmodifiableNavigableSet<E>
|
|||
}
|
||||
|
||||
@Override
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement, final boolean toInclusive) {
|
||||
public NavigableSet<E> subSet(final E fromElement, final boolean fromInclusive, final E toElement,
|
||||
final boolean toInclusive) {
|
||||
final NavigableSet<E> sub = decorated().subSet(fromElement, fromInclusive, toElement, toInclusive);
|
||||
return unmodifiableNavigableSet(sub);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue