(@NotNull String account)
| 1525 | private final ArrayList<String> accounts = new ArrayList<>(); |
| 1526 | |
| 1527 | void add(@NotNull String account) { |
| 1528 | var aTime = localActiveTimes.get(account); |
| 1529 | if (aTime != null && System.currentTimeMillis() - aTime > localActiveTimeout) |
| 1530 | accounts.add(account); |
| 1531 | } |
| 1532 | |
| 1533 | void tryPerform() { |
| 1534 | if (accounts.size() > 10) |
no test coverage detected