|
From: James M. <jma...@us...> - 2001-12-04 17:36:47
|
Update of /cvsroot/geotools/geotools/src/uk/ac/leeds/ccg/geotools
In directory usw-pr-cvs1:/tmp/cvs-serv5110/uk/ac/leeds/ccg/geotools
Modified Files:
PolygonLayer.java
Log Message:
moved order in which forceFlush was called
Index: PolygonLayer.java
===================================================================
RCS file: /cvsroot/geotools/geotools/src/uk/ac/leeds/ccg/geotools/PolygonLayer.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -w -C2 -d -r1.8 -r1.9
*** PolygonLayer.java 2001/12/04 16:05:01 1.8
--- PolygonLayer.java 2001/12/04 17:36:44 1.9
***************
*** 92,97 ****
*/
public void addGeoPolygon(GeoPolygon polygon, boolean keepQuiet) {
super.addGeoShape(polygon, keepQuiet);
- setForceBufferFlush(true);
}
--- 92,98 ----
*/
public void addGeoPolygon(GeoPolygon polygon, boolean keepQuiet) {
+ System.out.println("Forcing buffer flush");
+ this.setForceBufferFlush(true);
super.addGeoShape(polygon, keepQuiet);
}
|