mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-03-15 10:26:37 -04:00
Collapse TODO comments onto single line
This commit is contained in:
parent
fcd9966978
commit
3fcc56f849
@ -42,33 +42,28 @@ public class BlockChainFacade {
|
||||
}
|
||||
|
||||
private boolean findAddressInBlockChain(String address) {
|
||||
// TODO
|
||||
// lookup for address in blockchain
|
||||
// TODO lookup for address in blockchain
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
private byte[] getDataForTxWithAddress(String address) {
|
||||
// TODO
|
||||
// return data after OP_RETURN
|
||||
// TODO return data after OP_RETURN
|
||||
return null;
|
||||
}
|
||||
|
||||
private boolean isFeePayed(String address) {
|
||||
// TODO
|
||||
// check if fee is payed
|
||||
// TODO check if fee is paid
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean isAccountIDBlacklisted(String accountID) {
|
||||
// TODO
|
||||
// check if accountID is on blacklist
|
||||
// TODO check if accountID is on blacklist
|
||||
return false;
|
||||
}
|
||||
|
||||
private boolean isBankAccountBlacklisted(BankAccount bankAccount) {
|
||||
// TODO
|
||||
// check if accountID is on blacklist
|
||||
// TODO check if accountID is on blacklist
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -162,8 +162,7 @@ public class SettingsController extends CachedViewController {
|
||||
|
||||
@Override
|
||||
public ViewController loadViewAndGetChildController(NavigationItem navigationItem) {
|
||||
// TODO
|
||||
// caching causes exception
|
||||
// TODO caching causes exception
|
||||
final GuiceFXMLLoader loader = new GuiceFXMLLoader(getClass().getResource(navigationItem.getFxmlUrl()), false);
|
||||
try {
|
||||
final Node view = loader.load();
|
||||
|
Loading…
x
Reference in New Issue
Block a user