Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2568,11 +2568,6 @@ final ByteVector selectFromTemplate(ByteVector v,
return v.rearrange(this.toShuffle(), m);
}

private static
IndexOutOfBoundsException checkIndexFailed(Vector<?> vix, int length) {
String msg = String.format("Range check failed: vector %s out of bounds for length %d", vix, length);
return new IndexOutOfBoundsException(msg);
}

/**
* {@inheritDoc} <!--workaround-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2410,11 +2410,6 @@ final DoubleVector selectFromTemplate(DoubleVector v,
return v.rearrange(this.toShuffle(), m);
}

private static
IndexOutOfBoundsException checkIndexFailed(Vector<?> vix, int length) {
String msg = String.format("Range check failed: vector %s out of bounds for length %d", vix, length);
return new IndexOutOfBoundsException(msg);
}

/**
* {@inheritDoc} <!--workaround-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2422,11 +2422,6 @@ final FloatVector selectFromTemplate(FloatVector v,
return v.rearrange(this.toShuffle(), m);
}

private static
IndexOutOfBoundsException checkIndexFailed(Vector<?> vix, int length) {
String msg = String.format("Range check failed: vector %s out of bounds for length %d", vix, length);
return new IndexOutOfBoundsException(msg);
}

/**
* {@inheritDoc} <!--workaround-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2553,11 +2553,6 @@ final IntVector selectFromTemplate(IntVector v,
return v.rearrange(this.toShuffle(), m);
}

private static
IndexOutOfBoundsException checkIndexFailed(Vector<?> vix, int length) {
String msg = String.format("Range check failed: vector %s out of bounds for length %d", vix, length);
return new IndexOutOfBoundsException(msg);
}

/**
* {@inheritDoc} <!--workaround-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2419,11 +2419,6 @@ final LongVector selectFromTemplate(LongVector v,
return v.rearrange(this.toShuffle(), m);
}

private static
IndexOutOfBoundsException checkIndexFailed(Vector<?> vix, int length) {
String msg = String.format("Range check failed: vector %s out of bounds for length %d", vix, length);
return new IndexOutOfBoundsException(msg);
}

/**
* {@inheritDoc} <!--workaround-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2569,11 +2569,6 @@ final ShortVector selectFromTemplate(ShortVector v,
return v.rearrange(this.toShuffle(), m);
}

private static
IndexOutOfBoundsException checkIndexFailed(Vector<?> vix, int length) {
String msg = String.format("Range check failed: vector %s out of bounds for length %d", vix, length);
return new IndexOutOfBoundsException(msg);
}

/**
* {@inheritDoc} <!--workaround-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2945,11 +2945,6 @@ public abstract class $abstractvectortype$ extends AbstractVector<$Boxtype$> {
return v.rearrange(this.toShuffle(), m);
}

private static
IndexOutOfBoundsException checkIndexFailed(Vector<?> vix, int length) {
String msg = String.format("Range check failed: vector %s out of bounds for length %d", vix, length);
return new IndexOutOfBoundsException(msg);
}

/**
* {@inheritDoc} <!--workaround-->
Expand Down