From 99a2f312d44c290c1156f4f8dbeaeb4a97181b0b Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Thu, 16 Feb 2017 15:28:43 +0100 Subject: Remove unused functions. --- src/atomic.erl | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src') diff --git a/src/atomic.erl b/src/atomic.erl index 580fd17..36fba81 100644 --- a/src/atomic.erl +++ b/src/atomic.erl @@ -2,7 +2,7 @@ %%% See LICENSE for licensing information. -module(atomic). --export([replacefile/2, readfile/1, openfile/2, readline/1]). +-export([replacefile/2, readfile/1]). -spec replacefile(string(), binary()) -> ok. replacefile(Path, Content) -> @@ -20,9 +20,3 @@ readfile(Path) -> {error, Error} -> util:exit_with_error(readfile, Error, "Error reading file") end. - -openfile(Path, Modes) -> - file:open(Path, Modes). - -readline(IoDevice) -> - file:read_line(IoDevice). -- cgit v1.1