MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / getAccounts

Method getAccounts

src/main/java/IE/Accounts.java:221–231  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

219 }
220
221 private void getAccounts() {
222 Account a;
223 int index = 0;
224 do {
225 a = AccountStorage.createFromStorage(index);
226 if (a != null) {
227 accountList.addElement(a);
228 index++;
229 }
230 } while (a != null);
231 }
232
233 public int getItemCount() {
234 return accountList.size();

Callers 1

exportDataMethod · 0.95

Calls 2

createFromStorageMethod · 0.95
addElementMethod · 0.80

Tested by

no test coverage detected