Skip to content

Commit

Permalink
Remove superfluous comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rtjd6554 committed Aug 7, 2024
1 parent 98d80e1 commit fa23fd7
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,13 @@ public SplitPartitionCommitRequest deserialize(JsonElement jsonElement, Type typ
String tableId = json.get(TABLE_ID).getAsString();

PartitionJsonSerDe partitionJsonSerDe = new PartitionJsonSerDe(tablePropertiesProvider.getById(tableId).getSchema());
// Grab Parent

JsonElement jsonParentPartition = json.get(PARENT_PARTITION);
Partition parentPartition = partitionJsonSerDe.deserialize(jsonParentPartition, type, context);

// Grab left child
JsonElement jsonLeftPartition = json.get(LEFT_PARTITION);
Partition leftChildPartition = partitionJsonSerDe.deserialize(jsonLeftPartition, type, context);

// Grab right child
JsonElement jsonRightPartition = json.get(RIGHT_PARTITION);
Partition rightChildPartition = partitionJsonSerDe.deserialize(jsonRightPartition, type, context);

Expand Down

0 comments on commit fa23fd7

Please sign in to comment.