Skip to content

Commit b205ac9

Browse files
Resolve conflicts
1 parent 2ae27f2 commit b205ac9

File tree

6 files changed

+1
-52
lines changed

6 files changed

+1
-52
lines changed

deps/rabbit/BUILD.bazel

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -521,12 +521,6 @@ rabbitmq_suite(
521521
additional_srcs = [
522522
"test/mirrored_supervisor_SUITE_gs.erl",
523523
],
524-
<<<<<<< HEAD
525-
deps = [
526-
"//deps/rabbit_common:erlang_app",
527-
],
528-
=======
529-
>>>>>>> 3a3ff308aa (Fix all dependencies for the dialyzer)
530524
)
531525

532526
rabbitmq_suite(

deps/rabbit/src/rabbit_access_control.erl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,6 @@
1616

1717
%%----------------------------------------------------------------------------
1818

19-
<<<<<<< HEAD
20-
-export_type([permission_atom/0]).
21-
22-
-type permission_atom() :: 'configure' | 'read' | 'write'.
23-
24-
%%----------------------------------------------------------------------------
25-
26-
=======
27-
>>>>>>> 3a3ff308aa (Fix all dependencies for the dialyzer)
2819
-spec check_user_pass_login
2920
(rabbit_types:username(), rabbit_types:password()) ->
3021
{'ok', rabbit_types:user()} |

deps/rabbit/src/rabbit_exchange.erl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,8 @@
2222
%%----------------------------------------------------------------------------
2323

2424
-export_type([name/0, type/0]).
25-
<<<<<<< HEAD
26-
27-
-type name() :: rabbit_types:r('exchange').
28-
-type type() :: atom().
29-
=======
3025
-type name() :: rabbit_types:exchange_name().
3126
-type type() :: rabbit_types:exchange_type().
32-
>>>>>>> 3a3ff308aa (Fix all dependencies for the dialyzer)
3327
-type fun_name() :: atom().
3428

3529
%%----------------------------------------------------------------------------

deps/rabbit_common/src/rabbit_misc.erl

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,25 +1450,6 @@ is_regular_file(Name) ->
14501450
_ -> false
14511451
end.
14521452

1453-
<<<<<<< HEAD
1454-
=======
1455-
%% not exported by supervisor
1456-
-type supervisor_child_id() :: term().
1457-
-type supervisor_sup_ref() :: (Name :: atom())
1458-
| {Name :: atom(), Node :: node()}
1459-
| {'global', Name :: atom()}
1460-
| {'via', Module :: module(), Name :: any()}
1461-
| pid().
1462-
1463-
%% this used to be in supervisor2
1464-
-spec find_child(Supervisor, Name) -> [pid()] when
1465-
Supervisor :: supervisor_sup_ref(),
1466-
Name :: supervisor_child_id().
1467-
find_child(Supervisor, Name) ->
1468-
[Pid || {Name1, Pid, _Type, _Modules} <- supervisor:which_children(Supervisor),
1469-
Name1 =:= Name].
1470-
1471-
>>>>>>> 3a3ff308aa (Fix all dependencies for the dialyzer)
14721453
%% -------------------------------------------------------------------------
14731454
%% Begin copypasta from gen_server2.erl
14741455

deps/rabbitmq_consistent_hash_exchange/BUILD.bazel

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,8 @@ plt(
4343
name = "base_plt",
4444
apps = ["mnesia"],
4545
libs = ["//deps/rabbitmq_cli:elixir"],
46-
<<<<<<< HEAD
47-
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS + RUNTIME_DEPS,
48-
=======
4946
plt = "//:base_plt",
5047
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS,
51-
>>>>>>> 3a3ff308aa (Fix all dependencies for the dialyzer)
5248
)
5349

5450
dialyze(

deps/rabbitmq_mqtt/BUILD.bazel

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,7 @@ DEPS = [
5252
"@ranch//:erlang_app",
5353
]
5454

55-
<<<<<<< HEAD
56-
RUNTIME_DEPS = [
57-
"//deps/rabbit:erlang_app",
58-
]
59-
=======
6055
EXTRA_APPS = [ "ssl" ]
61-
>>>>>>> 3a3ff308aa (Fix all dependencies for the dialyzer)
6256

6357
rabbitmq_app(
6458
app_description = APP_DESCRIPTION,
@@ -67,7 +61,6 @@ rabbitmq_app(
6761
app_module = APP_MODULE,
6862
app_name = APP_NAME,
6963
build_deps = BUILD_DEPS,
70-
runtime_deps = RUNTIME_DEPS,
7164
deps = DEPS,
7265
extra_apps = EXTRA_APPS,
7366
)
@@ -81,7 +74,7 @@ plt(
8174
plt = "//:base_plt",
8275
apps = EXTRA_APPS,
8376
libs = ["//deps/rabbitmq_cli:elixir"],
84-
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS + RUNTIME_DEPS,
77+
deps = ["//deps/rabbitmq_cli:elixir"] + BUILD_DEPS + DEPS,
8578
)
8679

8780
dialyze(

0 commit comments

Comments
 (0)