Skip to content

Commit

Permalink
WalletReceiveModel: Switch to lombok getter
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Apr 7, 2022
1 parent 2dfbb97 commit fce8a4b
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,9 @@
import bisq.desktop.common.view.Model;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import lombok.Getter;

public class WalletReceiveModel implements Model {
@Getter
final ObservableList<String> listItems = FXCollections.observableArrayList();

public ObservableList<String> getListItems() {
return listItems;
}
}

0 comments on commit fce8a4b

Please sign in to comment.