Skip to content

Commit 34c0cd5

Browse files
authored
fix(analytical): Remove duplicated function (#4427)
As titled. #4426 (comment)
1 parent 67ece64 commit 34c0cd5

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

analytical_engine/java/grape-giraph/src/main/java/com/alibaba/graphscope/parallel/mm/impl/GiraphMpiMessageManager.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ public void receiveMessages() {
118118
"Frag [{}] totally Received [{}] bytes from others starting deserialization",
119119
fragId,
120120
bytesOfReceivedMsg);
121-
tmpVector.delete();
122121
}
123122

124123
/**

analytical_engine/java/grape-jdk/src/main/java/com/alibaba/graphscope/serialization/FFIByteVectorOutputStream.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -417,9 +417,4 @@ public void write(int b) throws IOException {
417417
vector.setRawByte(offset, (byte) b);
418418
offset += 1;
419419
}
420-
421-
@Override
422-
public void close() throws IOException {
423-
vector.delete();
424-
}
425420
}

0 commit comments

Comments
 (0)