[Bprocessor-commit] facade/src/net/sourceforge/bprocessor/facade/modellor FacadeModellor.java, 1.2
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-10-17 09:11:23
|
Update of /cvsroot/bprocessor/facade/src/net/sourceforge/bprocessor/facade/modellor In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13350/src/net/sourceforge/bprocessor/facade/modellor Modified Files: FacadeModellor.java Log Message: Added checkpoint after script-evaluation Fixed bug in facade-modellor Index: FacadeModellor.java =================================================================== RCS file: /cvsroot/bprocessor/facade/src/net/sourceforge/bprocessor/facade/modellor/FacadeModellor.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** FacadeModellor.java 16 Oct 2006 08:44:25 -0000 1.24 --- FacadeModellor.java 17 Oct 2006 09:11:11 -0000 1.25 *************** *** 109,116 **** /** The horizontal post-segments */ ! private Line[][] horSegs; /** The vertical post-segments */ ! private Line[][] vertSegs; /** Mapping from a segment to a boolean --- 109,116 ---- /** The horizontal post-segments */ ! private Line[][] horSegs = new Line[0][0]; /** The vertical post-segments */ ! private Line[][] vertSegs = new Line[0][0]; /** Mapping from a segment to a boolean *************** *** 496,501 **** */ private void removeSegmentLines() { ! for (int i = 0; i < vertPosts; i++) { ! for (int j = 0; j < horPosts; j++) { if (vertSegs[i][j] != null && vertSegs[i][j].getOwner() != null && --- 496,501 ---- */ private void removeSegmentLines() { ! for (int i = 0; i < vertSegs.length; i++) { ! for (int j = 0; j < vertSegs[i].length; j++) { if (vertSegs[i][j] != null && vertSegs[i][j].getOwner() != null && |