()
| 157 | } |
| 158 | |
| 159 | public void rmsUpdate() { |
| 160 | DataOutputStream outputStream = NvStorage.CreateDataOutputStream(); |
| 161 | for (int i = 0; i < getItemCount(); i++) { |
| 162 | AccountStorage.saveToDataOutputStream(getAccount(i), outputStream); |
| 163 | } |
| 164 | NvStorage.writeFileRecord(outputStream, "accnt_db", 0, true); //Account.storage |
| 165 | } |
| 166 | |
| 167 | private String findBlock(String source, String needle) { |
| 168 | String startItem = "<" + needle + ">"; |
no test coverage detected