From 90abd87dee295c60122d5dc1cfc6c27d1d92e903 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kim=20Nguy=E1=BB=85n?= Date: Sun, 10 Mar 2013 10:51:48 +0100 Subject: [PATCH] Add a missing ';' and remove some dead code and outdated comments. --- src/main.ml | 16 ++-------------- tools/Makefile | 12 ------------ 2 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 tools/Makefile diff --git a/src/main.ml b/src/main.ml index af1c930..100581e 100644 --- a/src/main.ml +++ b/src/main.ml @@ -14,21 +14,9 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) -(** use: xml_file "XPath querie" - or : xml_file -f XPath_querie_file - only the first line of XPath_querie_file is read -*) - -module F = Auto.Formula -module A = Auto.Ata -module X = Xpath.Compile - -(* to force ocaml build to add Formula to the dependency chain even if - we don't use it yet*) - let doc = let fd = open_in Sys.argv.(1) in let d = Tree.Naive.load_xml_file fd in @@ -50,7 +38,7 @@ let () = fprintf err_formatter "Evaluating automaton:\n%!"; let module Naive = Auto.Eval.Make(Tree.Naive) in let results = Naive.eval auto doc (Tree.Naive.root doc) in - output_string stdout "\n" + output_string stdout "\n"; List.iter (fun n -> Tree.Naive.print_xml stdout doc n; output_char stdout '\n' diff --git a/tools/Makefile b/tools/Makefile deleted file mode 100644 index 89d8986..0000000 --- a/tools/Makefile +++ /dev/null @@ -1,12 +0,0 @@ -all: XPathEval.class xml_diff - - -xml_diff: xml_diff.ml - ocamlfind ocamlopt -o xml_diff -package expat -linkpkg xml_diff.ml - -XPathEval.class: XPathEval.java - javac XPathEval.java - - -clean: - rm -f XPathEval.class xml_diff *.o *.cm* -- 2.17.1