Skip to content

Commit

Permalink
Update ConfigPhysicalReadPlan.java (apache#13624)
Browse files Browse the repository at this point in the history
  • Loading branch information
Caideyipi committed Sep 26, 2024
1 parent b9f17a2 commit 6b0f588
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ protected ConfigPhysicalReadPlan(final ConfigPhysicalPlanType type) {

@Override
protected void serializeImpl(final DataOutputStream stream) throws IOException {
throw new UnsupportedOperationException("Read request does not need to be serialized.");
// Read request does not need to be serialized
}

@Override
protected void deserializeImpl(final ByteBuffer buffer) throws IOException {
throw new UnsupportedOperationException("Read request does not need to be deserialized.");
// Read request does not need to be deserialized
}
}

0 comments on commit 6b0f588

Please sign in to comment.