JavadocMD / simplelatlng

A simple, lightweight library for common latitude and longitude calculation needs in Java.
90 stars 20 forks source link

LatLng not serializable #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently the class LatLng doesn't implement Serializable although with only 
two long field to it there is not reason why it shouldn't.
All it need is a simple "implements java.io.Serializable"

It would be helpful in several ways, especially for persistence purposes as in 
my case, tomcat session and session attribute persistence between server 
restarts. Non serializable session attributes cannot be handled and throw a 
java.io.NotSerializableException.

Would it be possible to include this in a minor release, like 1.0.1?

Cheers, Andy

Original issue reported on code.google.com by andiklei...@gmail.com on 9 Sep 2011 at 10:01

GoogleCodeExporter commented 9 years ago
Great idea, and simple to implement. I like it! I'll try to get a minor release 
whipped up for it here in the next few days.

Original comment by TylerCo...@gmail.com on 9 Sep 2011 at 9:52

GoogleCodeExporter commented 9 years ago
Fixed as of version 1.0.1.

Original comment by TylerCo...@gmail.com on 16 Sep 2011 at 5:36