Collapse TODO comments onto single line

This commit is contained in:
Chris Beams 2014-08-26 16:28:58 +02:00
parent fcd9966978
commit 3fcc56f849
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
2 changed files with 6 additions and 12 deletions

View File

@ -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;
}
}

View File

@ -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();