Skip to content

Commit

Permalink
"" doesn't cut it anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
wcummings committed Dec 6, 2016
1 parent bc3c6ad commit c8460e4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/cberl.erl
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
-deprecated({append, 4}).
-deprecated({prepend, 4}).

%% @equiv start_link(PoolName, NumCon, "localhost:8091", "", "", "")
%% @equiv start_link(PoolName, NumCon, "localhost:8091", "", "")
start_link(PoolName, NumCon) ->
start_link(PoolName, NumCon, "localhost:8091", "", "", "").
start_link(PoolName, NumCon, "localhost:8091", "", "").

%% @equiv start_link(PoolName, NumCon, Host, "", "", "")
%% @equiv start_link(PoolName, NumCon, Host, "", "")
start_link(PoolName, NumCon, Host) ->
start_link(PoolName, NumCon, Host, "", "", "").
start_link(PoolName, NumCon, Host, "", "").

%% @equiv start_link(PoolName, NumCon, Host, Username, Password, "")
%% @equiv start_link(PoolName, NumCon, Host, Username, Password, "default")
start_link(PoolName, NumCon, Host, Username, Password) ->
start_link(PoolName, NumCon, Host, Username, Password, "").
start_link(PoolName, NumCon, Host, Username, Password, "default").

%% @doc Create an instance of libcouchbase
%% hosts A list of hosts:port separated by ';' to the
Expand Down

0 comments on commit c8460e4

Please sign in to comment.