From: Sasa M. <sa...@us...> - 2004-05-11 09:02:10
|
Update of /cvsroot/jrobin/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2655 Modified Files: Demo.java Log Message: Folders reorganized. In other to run MRTG-CLIENT properly, move the files from jrobin/mrtg-res folder to jrobin/res/mrtg folder. Then remove mrtg-res folder. Index: Demo.java =================================================================== RCS file: /cvsroot/jrobin/src/Demo.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Demo.java 20 Apr 2004 10:22:03 -0000 1.14 --- Demo.java 11 May 2004 09:01:59 -0000 1.15 *************** *** 94,97 **** --- 94,99 ---- Sample sample = rrdDb.createSample(); while(t <= end + 86400L) { + //rrdDb = new RrdDb(rrdPath); + //Sample sample = rrdDb.createSample(); sample.setTime(t); sample.setValue("sun", sunSource.getValue()); *************** *** 103,106 **** --- 105,109 ---- System.out.print("*"); }; + //rrdDb.close(); } println(""); |