summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2015-10-05 17:37:01 +0200
committerJean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr>2015-10-20 11:10:48 +0200
commitd13545b5033577760fc431ca348345f581536817 (patch)
treedd5d873a769964be1edca2b4904493d884748bd7
parentbab7368ea3575051140e95a20140eaeba5ceb85f (diff)
downloadrabbitmq-server-git-d13545b5033577760fc431ca348345f581536817.tar.gz
Move common modules from rabbitmq-server to rabbitmq-common
-rw-r--r--src/rabbit_password_hashing.erl33
-rw-r--r--src/rabbit_queue_master_locator.erl33
2 files changed, 0 insertions, 66 deletions
diff --git a/src/rabbit_password_hashing.erl b/src/rabbit_password_hashing.erl
deleted file mode 100644
index 3c87093624..0000000000
--- a/src/rabbit_password_hashing.erl
+++ /dev/null
@@ -1,33 +0,0 @@
-%% The contents of this file are subject to the Mozilla Public License
-%% Version 1.1 (the "License"); you may not use this file except in
-%% compliance with the License. You may obtain a copy of the License
-%% at http://www.mozilla.org/MPL/
-%%
-%% Software distributed under the License is distributed on an "AS IS"
-%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-%% the License for the specific language governing rights and
-%% limitations under the License.
-%%
-%% The Original Code is RabbitMQ.
-%%
-%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
-%%
-
--module(rabbit_password_hashing).
--include("rabbit.hrl").
-
--ifdef(use_specs).
-
--callback hash(rabbit_types:password()) -> rabbit_types:password_hash().
-
--else.
-
--export([behaviour_info/1]).
-
-behaviour_info(callbacks) ->
- [{hash, 1}];
-behaviour_info(_Other) ->
- undefined.
-
--endif.
diff --git a/src/rabbit_queue_master_locator.erl b/src/rabbit_queue_master_locator.erl
deleted file mode 100644
index caaa7bbbde..0000000000
--- a/src/rabbit_queue_master_locator.erl
+++ /dev/null
@@ -1,33 +0,0 @@
-%% The contents of this file are subject to the Mozilla Public License
-%% Version 1.1 (the "License"); you may not use this file except in
-%% compliance with the License. You may obtain a copy of the License at
-%% http://www.mozilla.org/MPL/
-%%
-%% Software distributed under the License is distributed on an "AS IS"
-%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
-%% License for the specific language governing rights and limitations
-%% under the License.
-%%
-%% The Original Code is RabbitMQ.
-%%
-%% The Initial Developer of the Original Code is GoPivotal, Inc.
-%% Copyright (c) 2007-2015 Pivotal Software, Inc. All rights reserved.
-%%
-
--module(rabbit_queue_master_locator).
-
--ifdef(use_specs).
-
--callback description() -> [proplists:property()].
--callback queue_master_location(pid()) -> {'ok', node()} | {'error', term()}.
-
--else.
-
--export([behaviour_info/1]).
-behaviour_info(callbacks) ->
- [{description, 0},
- {queue_master_location, 1}];
-behaviour_info(_Other) ->
- undefined.
-
--endif.