From: Sasa M. <sa...@us...> - 2004-11-05 12:23:02
|
Update of /cvsroot/jrobin/src/org/jrobin/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4852/org/jrobin/demo Modified Files: Demo.java Log Message: Major bug removed from the jrrd package (archived values were only partialy imported). Minor changes to Demo.java. Index: Demo.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/demo/Demo.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Demo.java 20 Jul 2004 09:08:03 -0000 1.2 --- Demo.java 5 Nov 2004 12:22:52 -0000 1.3 *************** *** 54,57 **** --- 54,61 ---- RrdDb.setLockMode(RrdDb.NO_LOCKS); long startMillis = System.currentTimeMillis(); + if(args.length > 0) { + println("Setting default backend factory to " + args[0]); + RrdDb.setDefaultFactory(args[0]); + } long start = START; long end = END; |