accord-core/src/main/java/accord/primitives/FullRangeRoute.java [46:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public Route<Range> slice(int from, int to)
    {
        if (from == 0 && to == size())
            return this;
        return new PartialRangeRoute(homeKey, Arrays.copyOfRange(ranges, from, to));
    }

    @Override
    public FullRoute<?> toRoute(RoutingKey homeKey)
    {
        throw new UnsupportedOperationException("Already a route!");
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



accord-core/src/main/java/accord/primitives/PartialRangeRoute.java [78:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public Route<Range> slice(int from, int to)
    {
        if (from == 0 && to == size())
            return this;
        return new PartialRangeRoute(homeKey, Arrays.copyOfRange(ranges, from, to));
    }

    @Override
    public FullRoute<?> toRoute(RoutingKey homeKey)
    {
        throw new UnsupportedOperationException("Already a route!");
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



