From: Arne V. <cob...@us...> - 2004-07-20 17:01:49
|
Update of /cvsroot/jrobin/src/org/jrobin/graph In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8819/org/jrobin/graph Modified Files: ValueGrid.java Log Message: JRobin 1.4.1 - Altered ValueGrid to throw Exception in rare case Index: ValueGrid.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/graph/ValueGrid.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ValueGrid.java 20 Jul 2004 16:51:27 -0000 1.11 --- ValueGrid.java 20 Jul 2004 17:01:41 -0000 1.12 *************** *** 77,85 **** this.upper = up; this.vAxis = vAxis; ! baseValue = base; ! // Fill in the scale values if ( base != baseValue ) { double tmp = 1; for (int i = 1; i < 7; i++) { --- 77,86 ---- this.upper = up; this.vAxis = vAxis; ! // Fill in the scale values if ( base != baseValue ) { + baseValue = base; + double tmp = 1; for (int i = 1; i < 7; i++) { |