Skip to content

Commit

Permalink
totally trival and cosmetic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abhay committed Jun 16, 2008
1 parent 4501882 commit 56b5478
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions elibs/resource_pool.erl
Expand Up @@ -11,17 +11,15 @@
terminate/2, code_change/3]).


-record(state,
{
-record(state, {
active_nodes = [],
nodes = [],
pending_requests = queue:new(),
node_api_signature = 0,
node_api_definition = [],
details = [],
logging = false
}
).
}).

%% Common type annotations:
% @type details() = [{binary(), {int(),int(),int(),int()}}]
Expand All @@ -32,7 +30,7 @@
%

start_link(Details) ->
gen_server:start_link(?MODULE, [Details], []).
gen_server:start_link(?MODULE, [Details], []).

start(Details) ->
gen_server:start(?MODULE, [Details], []).
Expand Down

0 comments on commit 56b5478

Please sign in to comment.