diff options
author | Björn Gustavsson <[email protected]> | 2013-09-09 09:42:35 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-09-18 10:22:30 +0200 |
commit | ba4c69eea9062e79fb570b8045e1266e05c3f69a (patch) | |
tree | 19f7ae65e892fb115ee97ff077efc4fa05c9ed7f /lib/asn1/test/testSeqOfExternal.erl | |
parent | a37aee55dccc5ea35ef9b5568cff4bd0364f4b1c (diff) | |
download | otp-ba4c69eea9062e79fb570b8045e1266e05c3f69a.tar.gz otp-ba4c69eea9062e79fb570b8045e1266e05c3f69a.tar.bz2 otp-ba4c69eea9062e79fb570b8045e1266e05c3f69a.zip |
Remove unused compile() functions
Diffstat (limited to 'lib/asn1/test/testSeqOfExternal.erl')
-rw-r--r-- | lib/asn1/test/testSeqOfExternal.erl | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/asn1/test/testSeqOfExternal.erl b/lib/asn1/test/testSeqOfExternal.erl index 4c4c9e2b0f..0e4c6773c3 100644 --- a/lib/asn1/test/testSeqOfExternal.erl +++ b/lib/asn1/test/testSeqOfExternal.erl @@ -18,9 +18,6 @@ %% %% -module(testSeqOfExternal). - - --export([compile/3]). -export([main/1]). -include_lib("test_server/include/test_server.hrl"). @@ -30,17 +27,6 @@ -record('Imp',{os, bool}). -record('Exp',{os, bool}). - - -compile(Config,Rules,Options) -> - - ?line DataDir = ?config(data_dir,Config), - ?line OutDir = ?config(priv_dir,Config), - ?line true = code:add_patha(?config(priv_dir,Config)), - ?line ok = asn1ct:compile(DataDir ++ "SeqOfExternal",[Rules,{outdir,OutDir}]++Options). - - - main(_Rules) -> ?line {ok,Bytes11} = |