How do I get my Java object to stop resetting its creation date to the current date?
This is really basic, but I can't figure out why it keeps resetting the creation date. I'm using a simple expiration cache on the object. If it is expired, then I will create a new object. If it isn't, then just use the one that exists. However, every time I go to check the creation date on the object, it is the current date. public cla...