summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Majkowski <marek@rabbitmq.com>2011-02-18 14:25:05 +0000
committerMarek Majkowski <marek@rabbitmq.com>2011-02-18 14:25:05 +0000
commit65b14d2a0624956a10d80adc7bccc4f98bf2b633 (patch)
treebc3bbe8ec455494150ff1f4a0a90d9a8b4a062d4
parent18156c849324f0972f48f408fdb8da17d133502b (diff)
downloadrabbitmq-server-65b14d2a0624956a10d80adc7bccc4f98bf2b633.tar.gz
untabify
-rw-r--r--src/file_handle_cache.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file_handle_cache.erl b/src/file_handle_cache.erl
index c7881339..ed6394de 100644
--- a/src/file_handle_cache.erl
+++ b/src/file_handle_cache.erl
@@ -147,7 +147,7 @@
last_sync_offset/1, current_virtual_offset/1, current_raw_offset/1,
flush/1, copy/3, set_maximum_since_use/1, delete/1, clear/1]).
-export([obtain/0, transfer/1, set_limit/1, get_limit/0, get_obtain_count/0,
- get_obtain_limit/0]).
+ get_obtain_limit/0]).
-export([ulimit/0]).
-export([start_link/0, init/1, handle_call/3, handle_cast/2, handle_info/2,
@@ -888,10 +888,10 @@ handle_call({set_limit, Limit}, _From, State) ->
handle_call(get_limit, _From, State = #fhc_state { limit = Limit }) ->
{reply, Limit, State};
handle_call(get_obtain_count, _From,
- State = #fhc_state { obtain_count = Count }) ->
+ State = #fhc_state { obtain_count = Count }) ->
{reply, Count, State};
handle_call(get_obtain_limit, _From,
- State = #fhc_state { obtain_limit = Limit }) ->
+ State = #fhc_state { obtain_limit = Limit }) ->
{reply, Limit, State}.
handle_cast({register_callback, Pid, MFA},