(List<OEUser> accounts)
| 322 | } |
| 323 | |
| 324 | private String[] accountList(List<OEUser> accounts) { |
| 325 | String[] account_list = new String[accounts.size()]; |
| 326 | int i = 0; |
| 327 | for (OEUser user : accounts) { |
| 328 | account_list[i] = user.getAndroidName(); |
| 329 | i++; |
| 330 | } |
| 331 | return account_list; |
| 332 | } |
| 333 | |
| 334 | OEUser mAccount = null; |
| 335 |
no test coverage detected