Remove the prefix, these names were getting verbose.

This commit is contained in:
Simon MacMullen 2015-01-07 15:02:20 +00:00
parent cd0053686b
commit 59f6e60299
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ persister_stats(#state{fhc_stats = FHC,
[{flatten_key(K), V} || {K, V} <- FHCD].
flatten_key({A, B}) ->
list_to_atom("persister_" ++ atom_to_list(A) ++ "_" ++ atom_to_list(B)).
list_to_atom(atom_to_list(A) ++ "_" ++ atom_to_list(B)).
%%--------------------------------------------------------------------