(@NotNull String account)
| 264 | } |
| 265 | |
| 266 | public @Nullable BOnlines getOnline(@NotNull String account) { |
| 267 | var t = Transaction.getCurrent(); |
| 268 | if (t != null && t.isRunning()) |
| 269 | return _tonline.get(account); |
| 270 | return _tonline.selectDirty(account); |
| 271 | } |
| 272 | |
| 273 | public @NotNull BOnlines getOrAddOnline(@NotNull String account) { |
| 274 | return _tonline.getOrAdd(account); |
no test coverage detected