You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2009/01/12 11:27:22 UTC

svn commit: r733674 - /couchdb/trunk/src/couchdb/couch_config.erl

Author: jan
Date: Mon Jan 12 02:27:21 2009
New Revision: 733674

URL: http://svn.apache.org/viewvc?rev=733674&view=rev
Log:
Fix Whitespace

Modified:
    couchdb/trunk/src/couchdb/couch_config.erl

Modified: couchdb/trunk/src/couchdb/couch_config.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch_config.erl?rev=733674&r1=733673&r2=733674&view=diff
==============================================================================
--- couchdb/trunk/src/couchdb/couch_config.erl (original)
+++ couchdb/trunk/src/couchdb/couch_config.erl Mon Jan 12 02:27:21 2009
@@ -40,7 +40,6 @@
 all() ->
     lists:sort(ets:tab2list(?MODULE)).
 
-
 get(Section) when is_binary(Section) ->
     ?MODULE:get(?b2l(Section));
 get(Section) ->
@@ -111,8 +110,6 @@
         Fun
     end,
     {reply, ok, Config#config{notify_funs=[{Pid, Fun2}|PidFuns]}}.
-    
-    
 
 %% @spec load_ini_file(IniFile::filename()) -> ok
 %% @doc Parses an ini file and stores Key/Value Pairs into the ets table.
@@ -163,7 +160,6 @@
 %% @doc Unused
 handle_cast(foo, State) -> {noreply, State}.
 
-
 handle_info({'DOWN', _, _, DownPid, _}, #config{notify_funs=PidFuns}=Config) ->
     % remove any funs registered by the downed process
     FilteredPidFuns = [{Pid,Fun} || {Pid,Fun} <- PidFuns, Pid /= DownPid],