summaryrefslogtreecommitdiff
path: root/src/rebar_dialyzer_format.erl
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2017-11-01 19:38:03 -0400
committerFred Hebert <mononcqc@ferd.ca>2017-11-16 21:50:04 -0500
commit2d5cd9c00cfa4e58066b48beee4057fdd52cc7be (patch)
treeb70ad1213e273460f199d55914032f75675c5e9a /src/rebar_dialyzer_format.erl
parent557623ba897d580702034bd76f799b5107d72c6b (diff)
OTP-21 readiness, Full Unicode support
This replaces all deprecated function usage by alternative ones based on a version switch enacted at compile time, preventing all warnings. This will likely introduce some possible runtime errors in using a Rebar3 compiled on OTP-20 or OTP-21 back in versions 19 and earlier, but we can't really work around that. A bunch of dependencies have been updated to support OTP-21 without warnings as well.
Diffstat (limited to 'src/rebar_dialyzer_format.erl')
-rw-r--r--src/rebar_dialyzer_format.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_dialyzer_format.erl b/src/rebar_dialyzer_format.erl
index 7cf4e63..5583633 100644
--- a/src/rebar_dialyzer_format.erl
+++ b/src/rebar_dialyzer_format.erl
@@ -427,4 +427,4 @@ separate_args(D, [C | R], Arg, Args) ->
separate_args(D, R, [C | Arg], Args).
join_args(Args) ->
- [$(, string:join(Args, ", "), $)].
+ [$(, rebar_string:join(Args, ", "), $)].