|
From: James M. <jma...@us...> - 2001-12-03 15:06:33
|
Update of /cvsroot/geotools/geotools/src/uk/ac/leeds/ccg/geotools
In directory usw-pr-cvs1:/tmp/cvs-serv32469/uk/ac/leeds/ccg/geotools
Modified Files:
GeoPoint.java
Log Message:
Removed automatic setting of bounds for geopoints.
These are now not created untill asked for, which for the vast majority of geopoints is never.
Index: GeoPoint.java
===================================================================
RCS file: /cvsroot/geotools/geotools/src/uk/ac/leeds/ccg/geotools/GeoPoint.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -w -C2 -d -r1.5 -r1.6
*** GeoPoint.java 2001/02/08 16:13:23 1.5
--- GeoPoint.java 2001/12/03 15:06:31 1.6
***************
*** 33,37 ****
this.x = x;
this.y = y;
! setBounds(new GeoRectangle(x,y,0,0));
}
--- 33,37 ----
this.x = x;
this.y = y;
! //setBounds(new GeoRectangle(x,y,0,0));
}
|