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) { private boolean findAddressInBlockChain(String address) {
// TODO // TODO lookup for address in blockchain
// lookup for address in blockchain
return true; return true;
} }
private byte[] getDataForTxWithAddress(String address) { private byte[] getDataForTxWithAddress(String address) {
// TODO // TODO return data after OP_RETURN
// return data after OP_RETURN
return null; return null;
} }
private boolean isFeePayed(String address) { private boolean isFeePayed(String address) {
// TODO // TODO check if fee is paid
// check if fee is payed
return true; return true;
} }
private boolean isAccountIDBlacklisted(String accountID) { private boolean isAccountIDBlacklisted(String accountID) {
// TODO // TODO check if accountID is on blacklist
// check if accountID is on blacklist
return false; return false;
} }
private boolean isBankAccountBlacklisted(BankAccount bankAccount) { private boolean isBankAccountBlacklisted(BankAccount bankAccount) {
// TODO // TODO check if accountID is on blacklist
// check if accountID is on blacklist
return false; return false;
} }
} }

View file

@ -162,8 +162,7 @@ public class SettingsController extends CachedViewController {
@Override @Override
public ViewController loadViewAndGetChildController(NavigationItem navigationItem) { public ViewController loadViewAndGetChildController(NavigationItem navigationItem) {
// TODO // TODO caching causes exception
// caching causes exception
final GuiceFXMLLoader loader = new GuiceFXMLLoader(getClass().getResource(navigationItem.getFxmlUrl()), false); final GuiceFXMLLoader loader = new GuiceFXMLLoader(getClass().getResource(navigationItem.getFxmlUrl()), false);
try { try {
final Node view = loader.load(); final Node view = loader.load();