Skip to content

Commit

Permalink
fix: added deleted line #1596
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Miquis <[email protected]>
  • Loading branch information
jormiquis committed Oct 12, 2024
1 parent 3e986de commit 12391a6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ public final FileId getFileId() {
* @return {@code this}
*/
public SystemDeleteTransaction setFileId(FileId fileId) {
Objects.requireNonNull(fileId);
requireNotFrozen();
this.fileId = fileId;
this.contractId = null; // Reset contractId
Expand All @@ -125,6 +126,7 @@ public final ContractId getContractId() {
* @return {@code this}
*/
public SystemDeleteTransaction setContractId(ContractId contractId) {
Objects.requireNonNull(contractId);
requireNotFrozen();
this.contractId = contractId;
this.fileId = null; // Reset fileId
Expand Down

0 comments on commit 12391a6

Please sign in to comment.