Skip to content

Commit

Permalink
additional method implementation
Browse files Browse the repository at this point in the history
Signed-off-by: Santhosh Gandhe <[email protected]>
  • Loading branch information
san81 committed Jan 21, 2025
1 parent 7a71b40 commit d01315c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ public void setValue(Object updatedValue) {
this.secretValue = updatedValue.toString();
}

@Override
public void refresh() {
}

@Override
public boolean isUpdatable() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ public void setValue(Object someValue) {
this.defaultValue = someValue;
}

@Override
public void refresh() {
}

@Override
public boolean isUpdatable() {
return true;
Expand Down

0 comments on commit d01315c

Please sign in to comment.