Jessie,

As we talked about in the IRC.

The intersection() function at the very bottom of the LabelCacheDefault.java should be:

   //djb: replaced because old one was from sun's Rectangle class
   private Envelope intersection(Envelope e1,Envelope e2)
   {
       Envelope r = e1.intersection(e2);
       if (r.getWidth() <0)
           return null;
       if (r.getHeight() <0)
           return null;
return r; }

Could you make sure this is tracked and doesnt creep back in?
dave


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Geotools-devel mailing list
Geotools-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to