Skip to content

Commit

Permalink
Merge pull request #550 from apache/propagate_to_other_ArrayOf-type-S…
Browse files Browse the repository at this point in the history
…erDe

Propagation of change in ArrayOfItemsSerDe.
  • Loading branch information
leerho authored Apr 17, 2024
2 parents 1c555d7 + 9f385e1 commit 3afc66f
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public byte[] serializeToByteArray(final Boolean[] items) {
}

@Override
@Deprecated
public Boolean[] deserializeFromMemory(final Memory mem, final int numItems) {
return deserializeFromMemory(mem, 0, numItems);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public byte[] serializeToByteArray(final Double[] items) {
}

@Override
@Deprecated
public Double[] deserializeFromMemory(final Memory mem, final int numItems) {
return deserializeFromMemory(mem, 0, numItems);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public byte[] serializeToByteArray(final Long[] items) {
}

@Override
@Deprecated
public Long[] deserializeFromMemory(final Memory mem, final int numItems) {
return deserializeFromMemory(mem, 0, numItems);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ public byte[] serializeToByteArray(final Number[] items) {
}

@Override
@Deprecated
public Number[] deserializeFromMemory(final Memory mem, final int numItems) {
return deserializeFromMemory(mem, 0, numItems);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ public byte[] serializeToByteArray(final String[] items) {
}

@Override
@Deprecated
public String[] deserializeFromMemory(final Memory mem, final int numItems) {
return deserializeFromMemory(mem, 0, numItems);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ public byte[] serializeToByteArray(final String[] items) {
}

@Override
@Deprecated
public String[] deserializeFromMemory(final Memory mem, final int numItems) {
return deserializeFromMemory(mem, 0, numItems);
}
Expand Down

0 comments on commit 3afc66f

Please sign in to comment.