ClickableBitcoinAddress: make address property final

This commit is contained in:
Sean Gilligan 2023-09-16 09:45:54 -07:00 committed by Andreas Schildbach
parent b0ef27a019
commit a89e309d66

View file

@ -63,7 +63,7 @@ public class ClickableBitcoinAddress extends AnchorPane implements OverlayContro
@FXML protected Label copyWidget; @FXML protected Label copyWidget;
@FXML protected Label qrCode; @FXML protected Label qrCode;
protected SimpleObjectProperty<Address> address = new SimpleObjectProperty<>(); protected final SimpleObjectProperty<Address> address = new SimpleObjectProperty<>();
private final StringExpression addressStr; private final StringExpression addressStr;
private OverlayableStackPaneController rootController; private OverlayableStackPaneController rootController;