(String JJID, boolean toStorage)
| 72 | } |
| 73 | |
| 74 | public static void setJuickJID(String JJID, boolean toStorage) { |
| 75 | if (records.isEmpty()) { |
| 76 | records.readFromStorage(); |
| 77 | } |
| 78 | records.setJuickJID(sdata.account.JID.getBare(), JJID); |
| 79 | if (toStorage) { |
| 80 | records.writeToStorage(); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | private static class Records { |
| 85 | private Vector AccountsJIDs = null; |
no test coverage detected