summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Shorin <kxepal@apache.org>2015-01-31 19:26:49 +0300
committerAlexander Shorin <kxepal@apache.org>2015-01-31 19:26:49 +0300
commita327b7dbeb2b0050f7ca9072047bf8ef2d282833 (patch)
treee3f0ad7d56fcb7df7fc0d1caccbffaeda35f368a
parentbbf59a2174772c76e26daa5afeeb6f6c038088fb (diff)
downloadcouchdb-a327b7dbeb2b0050f7ca9072047bf8ef2d282833.tar.gz
Remove useless eunit include
-rw-r--r--src/rexi_app.erl1
-rw-r--r--src/rexi_monitor.erl1
-rw-r--r--src/rexi_server.erl1
3 files changed, 0 insertions, 3 deletions
diff --git a/src/rexi_app.erl b/src/rexi_app.erl
index c791d8317..0f1e892b5 100644
--- a/src/rexi_app.erl
+++ b/src/rexi_app.erl
@@ -14,7 +14,6 @@
-behaviour(application).
-export([start/2, stop/1]).
--include_lib("eunit/include/eunit.hrl").
start(_Type, StartArgs) ->
rexi_sup:start_link(StartArgs).
diff --git a/src/rexi_monitor.erl b/src/rexi_monitor.erl
index f143ead45..da6dcf533 100644
--- a/src/rexi_monitor.erl
+++ b/src/rexi_monitor.erl
@@ -13,7 +13,6 @@
-module(rexi_monitor).
-export([start/1, stop/1]).
--include_lib("eunit/include/eunit.hrl").
%% @doc spawn_links a process which monitors the supplied list of items and
%% returns the process ID. If a monitored process exits, the caller will
diff --git a/src/rexi_server.erl b/src/rexi_server.erl
index f71f87887..6cecdb8e7 100644
--- a/src/rexi_server.erl
+++ b/src/rexi_server.erl
@@ -19,7 +19,6 @@
-export([start_link/1, init_p/2, init_p/3]).
-include_lib("rexi/include/rexi.hrl").
--include_lib("eunit/include/eunit.hrl").
-record(job, {
client::reference(),