mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-11-05 11:56:37 +00:00
-removed unused parameter
This commit is contained in:
parent
865e3b8ee6
commit
4f1c44e517
2 changed files with 2 additions and 4 deletions
|
|
@ -25,7 +25,7 @@ public class OtherPoolsController extends JoinstrFormController {
|
|||
@Override
|
||||
public void initializeView() {
|
||||
try {
|
||||
joinstrPoolList = new JoinstrPoolList(JoinstrAction.JOIN);
|
||||
joinstrPoolList = new JoinstrPoolList();
|
||||
|
||||
joinstrPoolList.configureWithJoinButtons();
|
||||
|
||||
|
|
|
|||
|
|
@ -18,14 +18,12 @@ import java.util.function.Consumer;
|
|||
|
||||
public class JoinstrPoolList extends VBox {
|
||||
|
||||
private final JoinstrAction action;
|
||||
private TableView<JoinstrPool> poolTableView;
|
||||
private ObservableList<JoinstrPool> poolData;
|
||||
private FilteredList<JoinstrPool> filteredData;
|
||||
private Consumer<JoinstrPool> onPoolSelectedListener;
|
||||
|
||||
public JoinstrPoolList(JoinstrAction action) {
|
||||
this.action = action;
|
||||
public JoinstrPoolList() {
|
||||
initialize();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue