Skip to content

Commit

Permalink
making the transformers final and removing public modifier
Browse files Browse the repository at this point in the history
Signed-off-by: filev94 <[email protected]>
  • Loading branch information
filev94 committed Feb 7, 2025
1 parent 8d138e7 commit c9d9335
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import jakarta.inject.Named;

@Named
public class ConsensusCreateTopicTransformer extends AbstractBlockItemTransformer {
final class ConsensusCreateTopicTransformer extends AbstractBlockItemTransformer {
@Override
protected void updateTransactionRecord(BlockItem blockItem, TransactionRecord.Builder transactionRecordBuilder) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import jakarta.inject.Named;

@Named
public class ConsensusSubmitMessageTransformer extends AbstractBlockItemTransformer {
final class ConsensusSubmitMessageTransformer extends AbstractBlockItemTransformer {
@Override
protected void updateTransactionRecord(BlockItem blockItem, TransactionRecord.Builder transactionRecordBuilder) {

Expand Down

0 comments on commit c9d9335

Please sign in to comment.