|
From: Peter Murray-R. <pe...@us...> - 2006-12-13 22:39:41
|
Update of /cvsroot/cml/jumbo53/src/org/xmlcml/cml/tools In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv31396/src/org/xmlcml/cml/tools Modified Files: PolymerTool.java Log Message: latest examples Index: PolymerTool.java =================================================================== RCS file: /cvsroot/cml/jumbo53/src/org/xmlcml/cml/tools/PolymerTool.java,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** PolymerTool.java 7 Dec 2006 22:21:51 -0000 1.29 --- PolymerTool.java 13 Dec 2006 22:39:38 -0000 1.30 *************** *** 78,81 **** --- 78,83 ---- } + // Set<Convention> debugSet = new HashSet<Convention>(); + File OUTPUT_DIR = Util.getTestOutputDirectory(PolymerTool.class); *************** *** 307,311 **** } } catch (CMLRuntimeException e) { ! System.err.println("Comparison files does not exist, skipped: "+f); } File testFile = new File(OUTPUT_DIR, fileroot+S_UNDER+s+".xml"); --- 309,313 ---- } } catch (CMLRuntimeException e) { ! System.out.println("Comparison files does not exist, skipped: "+f); } File testFile = new File(OUTPUT_DIR, fileroot+S_UNDER+s+".xml"); *************** *** 905,908 **** --- 907,911 ---- int i = 0; boolean debug = true; + List<String> debugList = new ArrayList<String>(); while (i < args.length) { if (args[i].equalsIgnoreCase("-INFILE")) { |