diff options
Diffstat (limited to 'src/couchdb/couch_util.erl')
-rw-r--r-- | src/couchdb/couch_util.erl | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/couchdb/couch_util.erl b/src/couchdb/couch_util.erl index d967b433..088fde85 100644 --- a/src/couchdb/couch_util.erl +++ b/src/couchdb/couch_util.erl @@ -14,7 +14,7 @@ -export([start_driver/1,terminate_linked/1]). -export([should_flush/0, should_flush/1, to_existing_atom/1]). --export([new_uuid/0, rand32/0, implode/2, collate/2, collate/3]). +-export([rand32/0, implode/2, collate/2, collate/3]). -export([abs_pathname/1,abs_pathname/2, trim/1, ascii_lower/1]). -export([encodeBase64/1, decodeBase64/1, encodeBase64Url/1, decodeBase64Url/1, to_hex/1,parse_term/1, dict_find/3]). @@ -55,9 +55,6 @@ terminate_linked(Reason) -> ok. -new_uuid() -> - list_to_binary(to_hex(crypto:rand_bytes(16))). - to_hex([]) -> []; to_hex(Bin) when is_binary(Bin) -> @@ -394,4 +391,4 @@ url_encode([H|T]) -> end end; url_encode([]) -> - [].
\ No newline at end of file + []. |