(@NotNull String account, @NotNull String clientId)
| 681 | } |
| 682 | |
| 683 | public @Nullable Long getLoginVersion(@NotNull String account, @NotNull String clientId) { |
| 684 | var login = getLogin(account, clientId); |
| 685 | return login != null ? login.getLoginVersion() : null; |
| 686 | } |
| 687 | |
| 688 | public @Nullable Long getLocalLoginVersion(@NotNull String account, @NotNull String clientId) { |
| 689 | var local = _tlocal.get(account); |
nothing calls this directly
no test coverage detected