Skip to content

Commit

Permalink
fix(analytical): Remove duplicated function (#4427)
Browse files Browse the repository at this point in the history
As titled. 

#4426 (comment)
  • Loading branch information
zhanglei1949 authored Jan 15, 2025
1 parent 67ece64 commit 34c0cd5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ public void receiveMessages() {
"Frag [{}] totally Received [{}] bytes from others starting deserialization",
fragId,
bytesOfReceivedMsg);
tmpVector.delete();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,4 @@ public void write(int b) throws IOException {
vector.setRawByte(offset, (byte) b);
offset += 1;
}

@Override
public void close() throws IOException {
vector.delete();
}
}

0 comments on commit 34c0cd5

Please sign in to comment.