continue;
}
if (serverID.equals(btcServer.getServer_id())) {
// Put logic for checking if accounts exist
for (int j = 0; j < walletData.GetBitcoinAcctCount(); j++) {
BitcoinAcct btcAcct = walletData.GetBitcoinAcct(j);
if (btcAcct == null) {
continue;
}
if (serverID.equals(btcAcct.getServer_id())) {
walletData.RemoveBitcoinAcct(j);
if (otapi.StoreObject(walletData, "moneychanger", "gui_wallet.dat")) {
walletData = Helpers.getWalletData();
if (walletData == null) {
System.out.println("removeOtherTabServer After RemoveBitcoinAcct - walletData returns null");