From 57c85a41850f2d5e60a090a7415699cbc48f1ed4 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Fri, 6 Aug 2010 06:19:22 -0700 Subject: [PATCH] fixed compiler warning for unused variable in jsx:load_tests(Path) --- src/jsx.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsx.erl b/src/jsx.erl index 475fdd7..f5615f3 100644 --- a/src/jsx.erl +++ b/src/jsx.erl @@ -225,7 +225,7 @@ detect_encoding(Bin, Opts) -> load_tests(Path) -> %% search the specified directory for any files with the .test ending TestSpecs = filelib:wildcard("*.test", Path), - Tests = load_tests(TestSpecs, Path, []). + load_tests(TestSpecs, Path, []). load_tests([], _Dir, Acc) -> lists:reverse(Acc);