Skip to content

Commit

Permalink
speeling
Browse files Browse the repository at this point in the history
  • Loading branch information
nik9000 committed Oct 27, 2023
1 parent cebb1dc commit dc958a4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ default void writeTo(StreamOutput out) throws IOException {

/**
* Returns a builder using the {@link BlockFactory#getNonBreakingInstance nonbreaking block factory}.
* @Deprecated use {@link BlockFactory#newBooleanVectorBuilder}
* @deprecated use {@link BlockFactory#newBooleanVectorBuilder}
*/
// Eventually, we want to remove this entirely, always passing an explicit BlockFactory
@Deprecated
Expand All @@ -114,7 +114,7 @@ static Builder newVectorBuilder(int estimatedSize) {
/**
* Creates a builder that grows as needed. Prefer {@link #newVectorFixedBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newBooleanVectorBuilder}
* @deprecated use {@link BlockFactory#newBooleanVectorBuilder}
*/
@Deprecated
static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
Expand All @@ -124,7 +124,7 @@ static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
/**
* Creates a builder that never grows. Prefer this over {@link #newVectorBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newBooleanVectorFixedBuilder}
* @deprecated use {@link BlockFactory#newBooleanVectorFixedBuilder}
*/
@Deprecated
static FixedBuilder newVectorFixedBuilder(int size, BlockFactory blockFactory) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ default void writeTo(StreamOutput out) throws IOException {

/**
* Returns a builder using the {@link BlockFactory#getNonBreakingInstance nonbreaking block factory}.
* @Deprecated use {@link BlockFactory#newBytesRefVectorBuilder}
* @deprecated use {@link BlockFactory#newBytesRefVectorBuilder}
*/
// Eventually, we want to remove this entirely, always passing an explicit BlockFactory
@Deprecated
Expand All @@ -113,7 +113,7 @@ static Builder newVectorBuilder(int estimatedSize) {

/**
* Creates a builder that grows as needed.
* @Deprecated use {@link BlockFactory#newBytesRefVectorBuilder}
* @deprecated use {@link BlockFactory#newBytesRefVectorBuilder}
*/
@Deprecated
static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ default void writeTo(StreamOutput out) throws IOException {

/**
* Returns a builder using the {@link BlockFactory#getNonBreakingInstance nonbreaking block factory}.
* @Deprecated use {@link BlockFactory#newDoubleVectorBuilder}
* @deprecated use {@link BlockFactory#newDoubleVectorBuilder}
*/
// Eventually, we want to remove this entirely, always passing an explicit BlockFactory
@Deprecated
Expand All @@ -115,7 +115,7 @@ static Builder newVectorBuilder(int estimatedSize) {
/**
* Creates a builder that grows as needed. Prefer {@link #newVectorFixedBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newDoubleVectorBuilder}
* @deprecated use {@link BlockFactory#newDoubleVectorBuilder}
*/
@Deprecated
static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
Expand All @@ -125,7 +125,7 @@ static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
/**
* Creates a builder that never grows. Prefer this over {@link #newVectorBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newDoubleVectorFixedBuilder}
* @deprecated use {@link BlockFactory#newDoubleVectorFixedBuilder}
*/
@Deprecated
static FixedBuilder newVectorFixedBuilder(int size, BlockFactory blockFactory) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ default void writeTo(StreamOutput out) throws IOException {

/**
* Returns a builder using the {@link BlockFactory#getNonBreakingInstance nonbreaking block factory}.
* @Deprecated use {@link BlockFactory#newIntVectorBuilder}
* @deprecated use {@link BlockFactory#newIntVectorBuilder}
*/
// Eventually, we want to remove this entirely, always passing an explicit BlockFactory
@Deprecated
Expand All @@ -114,7 +114,7 @@ static Builder newVectorBuilder(int estimatedSize) {
/**
* Creates a builder that grows as needed. Prefer {@link #newVectorFixedBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newIntVectorBuilder}
* @deprecated use {@link BlockFactory#newIntVectorBuilder}
*/
@Deprecated
static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
Expand All @@ -124,7 +124,7 @@ static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
/**
* Creates a builder that never grows. Prefer this over {@link #newVectorBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newIntVectorFixedBuilder}
* @deprecated use {@link BlockFactory#newIntVectorFixedBuilder}
*/
@Deprecated
static FixedBuilder newVectorFixedBuilder(int size, BlockFactory blockFactory) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ default void writeTo(StreamOutput out) throws IOException {

/**
* Returns a builder using the {@link BlockFactory#getNonBreakingInstance nonbreaking block factory}.
* @Deprecated use {@link BlockFactory#newLongVectorBuilder}
* @deprecated use {@link BlockFactory#newLongVectorBuilder}
*/
// Eventually, we want to remove this entirely, always passing an explicit BlockFactory
@Deprecated
Expand All @@ -115,7 +115,7 @@ static Builder newVectorBuilder(int estimatedSize) {
/**
* Creates a builder that grows as needed. Prefer {@link #newVectorFixedBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newLongVectorBuilder}
* @deprecated use {@link BlockFactory#newLongVectorBuilder}
*/
@Deprecated
static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
Expand All @@ -125,7 +125,7 @@ static Builder newVectorBuilder(int estimatedSize, BlockFactory blockFactory) {
/**
* Creates a builder that never grows. Prefer this over {@link #newVectorBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#newLongVectorFixedBuilder}
* @deprecated use {@link BlockFactory#newLongVectorFixedBuilder}
*/
@Deprecated
static FixedBuilder newVectorFixedBuilder(int size, BlockFactory blockFactory) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ $endif$

/**
* Returns a builder using the {@link BlockFactory#getNonBreakingInstance nonbreaking block factory}.
* @Deprecated use {@link BlockFactory#new$Type$VectorBuilder}
* @deprecated use {@link BlockFactory#new$Type$VectorBuilder}
*/
// Eventually, we want to remove this entirely, always passing an explicit BlockFactory
@Deprecated
Expand All @@ -156,13 +156,13 @@ $endif$
$if(BytesRef)$
/**
* Creates a builder that grows as needed.
* @Deprecated use {@link BlockFactory#new$Type$VectorBuilder}
* @deprecated use {@link BlockFactory#new$Type$VectorBuilder}
*/
$else$
/**
* Creates a builder that grows as needed. Prefer {@link #newVectorFixedBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#new$Type$VectorBuilder}
* @deprecated use {@link BlockFactory#new$Type$VectorBuilder}
*/
$endif$
@Deprecated
Expand All @@ -175,7 +175,7 @@ $else$
/**
* Creates a builder that never grows. Prefer this over {@link #newVectorBuilder}
* if you know the size up front because it's faster.
* @Deprecated use {@link BlockFactory#new$Type$VectorFixedBuilder}
* @deprecated use {@link BlockFactory#new$Type$VectorFixedBuilder}
*/
@Deprecated
static FixedBuilder newVectorFixedBuilder(int size, BlockFactory blockFactory) {
Expand Down

0 comments on commit dc958a4

Please sign in to comment.