Andrew - 2014-03-27

First of all, I have to express my deep gratitude and respect for the programmers of this, it is an excellent tool.

That said, I have run into an odd error. I have a standalone Java class that has two dependency jars (Google guava and a simple and stupid logger that I wrote) that I export and import into the build path of a servlet.

The problem first showed up when I added two String types to the constructor (this part worked fine) and later decided to remove these two String parameters in the constructor.

Now, whenever I rebuild in FatJar and import into the servlet, it complains that I only have two constructor parameters, and insists that I should include the two String parameters that I removed from the constructor some time ago.

Has anyone else had issues with zombie constructor parameters?