aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-02-10 16:02:33 +0100
committerBjörn-Egil Dahlberg <[email protected]>2016-02-10 16:02:33 +0100
commite64741414cc1527797b01ebab1ba64123537991e (patch)
treeca57b3d980fa75a80a125e8d3f317eed3e69f65c
parent47c2ace2a036bbc5da7950aa8c59bc78b4e498e1 (diff)
downloadotp-e64741414cc1527797b01ebab1ba64123537991e.tar.gz
otp-e64741414cc1527797b01ebab1ba64123537991e.tar.bz2
otp-e64741414cc1527797b01ebab1ba64123537991e.zip
tools: Remove dead code in lcnt
-rw-r--r--lib/tools/src/lcnt.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/tools/src/lcnt.erl b/lib/tools/src/lcnt.erl
index e8b3d242e4..3a3cebf3ed 100644
--- a/lib/tools/src/lcnt.erl
+++ b/lib/tools/src/lcnt.erl
@@ -933,7 +933,6 @@ strings(Strings) -> strings(Strings, []).
strings([], Out) -> Out;
strings([{space, N, S} | Ss], Out) -> strings(Ss, Out ++ term2string(term2string("~~~ws", [N]), [S]));
strings([{left, N, S} | Ss], Out) -> strings(Ss, Out ++ term2string(term2string(" ~~s~~~ws", [N]), [S,""]));
-strings([{format, Format, S} | Ss], Out) -> strings(Ss, Out ++ term2string(Format, [S]));
strings([S|Ss], Out) -> strings(Ss, Out ++ term2string("~ts", [S])).