Skip to content

Commit

Permalink
Add comments for empty methods (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielWang2035 authored Jun 3, 2024
1 parent 7bbe2e9 commit e83303a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,14 @@ public BenchmarkSessionPool(
}

@Override
public void open() {}
public void open() {
// Do nothing
}

@Override
public void open(boolean enableRPCCompression) {}
public void open(boolean enableRPCCompression) {
// Do nothing
}

@Override
public void insertRecord(
Expand Down

0 comments on commit e83303a

Please sign in to comment.