Merge pull request #400 from toopay/patch-clarity-cleanup

Fix spec comment and remove useless case block
This commit is contained in:
Evgeny Khramtsov 2015-01-09 19:14:53 +03:00
commit 479da33092
1 changed files with 2 additions and 5 deletions

View File

@ -77,10 +77,7 @@ update_reg_users_counter_table(Server) ->
mnesia:sync_dirty(F).
plain_password_required() ->
case is_scrammed() of
false -> false;
true -> true
end.
is_scrammed().
store_type() ->
case is_scrammed() of
@ -150,7 +147,7 @@ set_password(User, Server, Password) ->
ok
end.
%% @spec (User, Server, Password) -> {atomic, ok} | {atomic, exists} | {error, invalid_jid} | {aborted, Reason}
%% @spec (User, Server, Password) -> {atomic, ok} | {atomic, exists} | {error, invalid_jid} | {error, not_allowed} | {error, Reason}
try_register(User, Server, PasswordList) ->
LUser = jlib:nodeprep(User),
LServer = jlib:nameprep(Server),