Skip to content

Commit

Permalink
Relocate check before method
Browse files Browse the repository at this point in the history
  • Loading branch information
rtjd6554 committed Feb 20, 2025
1 parent 5de500d commit 695bda6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ public void apply(StateStorePartitions stateStorePartitions, Instant updateTime)
partitions.forEach(stateStorePartitions::put);
}

@Override
public void checkBefore(StateStore stateStore) throws StateStoreException {
}

@Override
public int hashCode() {
return Objects.hash(partitions);
Expand All @@ -82,8 +86,4 @@ public String toString() {
return "InitialisePartitionsTransaction{partitions=" + partitions + "}";
}

@Override
public void checkBefore(StateStore stateStore) throws StateStoreException {
}

}

0 comments on commit 695bda6

Please sign in to comment.